Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created June 22, 2018 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmercouris/15acdd2b6ef7f6f14e4c8741b748be7a to your computer and use it in GitHub Desktop.
Save jmercouris/15acdd2b6ef7f6f14e4c8741b748be7a to your computer and use it in GitHub Desktop.
(defmacro with-logged-in (&body body)
`(if (gethash :logged-in *session*)
(progn ,@body)
(cl-markup:markup
(:h1 "You are not logged in."))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment