Skip to content

Instantly share code, notes, and snippets.

@ciwolsey
Created October 25, 2014 21:36
Show Gist options
  • Save ciwolsey/bf1028b30526c784cca1 to your computer and use it in GitHub Desktop.
Save ciwolsey/bf1028b30526c784cca1 to your computer and use it in GitHub Desktop.
Router.onBeforeAction(function () {
// all properties available in the route function
// are also available here such as this.params
if (!Meteor.user()) {
// if the user is not logged in, render the Login template
this.render('Login');
} else {
// otherwise don't hold up the rest of hooks or our route/action function
from running
this.next();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment