mirror of
https://github.com/metosin/reitit.git
synced 2026-02-11 05:45:17 +00:00
Fix :body coercion (not open, :body coercer)
This commit is contained in:
parent
becd30386d
commit
97598ce194
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
(def ring-parameter-coercion
|
(def ring-parameter-coercion
|
||||||
{:query (->ParameterCoercion :query-params :string true true)
|
{:query (->ParameterCoercion :query-params :string true true)
|
||||||
:body (->ParameterCoercion :body-params :string false true)
|
:body (->ParameterCoercion :body-params :body false false)
|
||||||
:form (->ParameterCoercion :form-params :string true true)
|
:form (->ParameterCoercion :form-params :string true true)
|
||||||
:header (->ParameterCoercion :header-params :string true true)
|
:header (->ParameterCoercion :header-params :string true true)
|
||||||
:path (->ParameterCoercion :path-params :string true true)})
|
:path (->ParameterCoercion :path-params :string true true)})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue