duct
duct copied to clipboard
(:query-params request) not keywordized?
The title says it all. the result map I get from (:query-params request) is not keywordized. Should this be keywordized by default?
The wrap-keywords middleware only keywordizes :params. This is so that you can access the parameters conveniently via :params, but access them more exactly via :query-params (and :form-params).
Just curious, what is the reason why (:query-params) is not keywordized by default?