Skip to content

Instantly share code, notes, and snippets.

@uris77
Created December 17, 2015 20:53
Show Gist options
  • Save uris77/0cb8d36d9887274b43be to your computer and use it in GitHub Desktop.
Save uris77/0cb8d36d9887274b43be to your computer and use it in GitHub Desktop.
Example of wrapping routes in ring
def app-routes
(routes
#service-routes
(wrap-routes #'restricted-service-routes middleware/wrap-auth)
(wrap-routes #'home-routes middleware/wrap-csrf)
(route/not-found
(:body
(error-page {:status 404
:title "page not found"})))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment