Changed letsencrypt issuer stages from keywords to strings.

This commit is contained in:
Clemens Geibel 2022-05-11 14:14:29 +02:00
parent 434c55ed87
commit 933342d860
3 changed files with 3 additions and 3 deletions

View file

@ -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"
:url "https://domaindrivenarchitecture.org"
:license {:name "Apache License, Version 2.0"

View file

@ -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"
:url "https://domaindrivenarchitecture.org"
:license {:name "Apache License, Version 2.0"

View file

@ -12,7 +12,7 @@
(defn letsencrypt-issuer?
[input]
(contains? #{:prod :staging} input))
(contains? #{"prod" "staging"} input))
(defn map-or-seq?
[input]