Created
September 7, 2011 18:31
-
-
Save mauricemach/1201327 to your computer and use it in GitHub Desktop.
zappa equivalent to http://pastie.org/private/hcy3pdouzf2j8mvcxu6w
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
helper requires_login: (cb) -> | |
if request.session.user then cb() | |
else redirect "/sessions/new?redir=" + request.url | |
get "/accounts/new": -> | |
requires_login -> | |
render "home/accountNew" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment