Changed letsencrypt issuer stages from keywords to strings.
This commit is contained in:
parent
434c55ed87
commit
933342d860
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
(defproject org.domaindrivenarchitecture/c4k-common-cljs "1.1.6-SNAPSHOT"
|
(defproject org.domaindrivenarchitecture/c4k-common-cljs "2.0.0-SNAPSHOT"
|
||||||
:description "Contains predicates and tools for c4k"
|
:description "Contains predicates and tools for c4k"
|
||||||
:url "https://domaindrivenarchitecture.org"
|
:url "https://domaindrivenarchitecture.org"
|
||||||
:license {:name "Apache License, Version 2.0"
|
:license {:name "Apache License, Version 2.0"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject org.domaindrivenarchitecture/c4k-common-clj "1.1.5-SNAPSHOT"
|
(defproject org.domaindrivenarchitecture/c4k-common-clj "2.0.0-SNAPSHOT"
|
||||||
:description "Contains predicates and tools for c4k"
|
:description "Contains predicates and tools for c4k"
|
||||||
:url "https://domaindrivenarchitecture.org"
|
:url "https://domaindrivenarchitecture.org"
|
||||||
:license {:name "Apache License, Version 2.0"
|
:license {:name "Apache License, Version 2.0"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
(defn letsencrypt-issuer?
|
(defn letsencrypt-issuer?
|
||||||
[input]
|
[input]
|
||||||
(contains? #{:prod :staging} input))
|
(contains? #{"prod" "staging"} input))
|
||||||
|
|
||||||
(defn map-or-seq?
|
(defn map-or-seq?
|
||||||
[input]
|
[input]
|
||||||
|
|
Loading…
Reference in a new issue