Skip to content

Instantly share code, notes, and snippets.

@cryptoquick
Created January 17, 2015 04:38
Show Gist options
  • Save cryptoquick/b23f64eca3c445d705d4 to your computer and use it in GitHub Desktop.
Save cryptoquick/b23f64eca3c445d705d4 to your computer and use it in GitHub Desktop.
Meteor: Route to home when the user isn't logged in.
Router.configure({
onBeforeAction: function () {
if (!Meteor.userId()) {
var currentRoute = Router.current().route.getName()
if (currentRoute !== 'home') {
Router.go('/');
}
}
this.next();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment