You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If my route is in the first list (dont-require-auth-routes in the example above), the middleware is able to invoke it. Otherwise, it doesn't find the function and returns:
First of all, awesome idea. Thanks for the lib!
It seems the current version doesn't play well with compojure.core.routes function (to compose routes).
e.g.:
(def handler (routes (-> dont-require-auth-routes (wrap-keyword-params) (wrap-params) (wrap-apigw-lambda-proxy) ) (-> require-auth-routes (wrap-keyword-params) (wrap-params) (wrap-basic-authentication authenticated?) (wrap-apigw-lambda-proxy) ) ) )
If my route is in the first list (dont-require-auth-routes in the example above), the middleware is able to invoke it. Otherwise, it doesn't find the function and returns:
{ "statusCode": null, "headers": null, "body": null }
The text was updated successfully, but these errors were encountered: