Skip to content

Instantly share code, notes, and snippets.

@jplaza
Last active December 30, 2015 15:39
Show Gist options
  • Save jplaza/7849574 to your computer and use it in GitHub Desktop.
Save jplaza/7849574 to your computer and use it in GitHub Desktop.
Pedestal interceptors per HTTP verb
(defroutes routes
["/contact" {:get [:contact home/contact-page] ;; Handler for GET /contact
:post [^:interceptors [home/verify-contact-form] ;; Interceptors for POST /contact
:contact-submit home/contact-submit-form]} ;; Handler for POST /contact
^:interceptors [middlewares/keyword-params]]) ;; Interceptors for any HTTP verb in the /contact route
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment