-
-
Save weavejester/3736775 to your computer and use it in GitHub Desktop.
compojure test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def action-show | |
"Action that shows the help and about page." | |
(GET "/help" [account member] | |
(normal-layout account | |
[:div | |
[:h1 "Title"] | |
[:p "lorem"]]) | |
(defroutes app-routes | |
index/action-show | |
help/action-show) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment