We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5079f commit 888ca60Copy full SHA for 888ca60
src/compojure/api/meta.clj
@@ -215,8 +215,8 @@
215
body `(do ~@body)
216
body (if (seq letks) `(letk ~letks ~body) body)
217
body (if (seq lets) `(let ~lets ~body) body)
218
- body (if (seq parameters) `(meta-container ~parameters ~body) body)
219
body (if (seq middlewares) `(route-middlewares ~middlewares ~body ~arg) body)
+ body (if (seq parameters) `(meta-container ~parameters ~body) body)
220
body `(~method-symbol ~path ~arg-with-request ~body)
221
body (if responses `(body-coercer-middleware ~body ~responses) body)]
222
body))
0 commit comments