From 52eeea3c99efe684b366bb6accd56be9bb98e542 Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Wed, 26 Sep 2018 16:28:26 +0300 Subject: [PATCH] Allow any keys in paramters, related to #145 --- modules/reitit-core/src/reitit/spec.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/reitit-core/src/reitit/spec.cljc b/modules/reitit-core/src/reitit/spec.cljc index 6e70d867..02bd357b 100644 --- a/modules/reitit-core/src/reitit/spec.cljc +++ b/modules/reitit-core/src/reitit/spec.cljc @@ -74,7 +74,7 @@ ;; coercion ;; -(s/def :reitit.core.coercion/kw-map (s/or :map (s/map-of keyword? any?) :spec s/spec?)) +(s/def :reitit.core.coercion/kw-map (s/or :map (s/map-of any? any?) :spec s/spec?)) (s/def :reitit.core.coercion/query :reitit.core.coercion/kw-map) (s/def :reitit.core.coercion/body :reitit.core.coercion/kw-map)