Skip to content

Instantly share code, notes, and snippets.

@czbaker
Created January 15, 2015 16:44
Show Gist options
  • Save czbaker/0332491dc623f6c743f3 to your computer and use it in GitHub Desktop.
Save czbaker/0332491dc623f6c743f3 to your computer and use it in GitHub Desktop.
# Global hook for requiring login, except front page and about.
Router.onBeforeAction ->
# If not logged in, tell the person they must be, otherwise continue.
if (!Meteor.userId()) {
this.render('loginRequired');
} else {
this.next();
}
}, {
except: ['home']
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment