Skip to content

Instantly share code, notes, and snippets.

@Streemo
Created October 25, 2014 20:48
Show Gist options
  • Save Streemo/a48eac2ee44a7f9e0194 to your computer and use it in GitHub Desktop.
Save Streemo/a48eac2ee44a7f9e0194 to your computer and use it in GitHub Desktop.
function requireLogin(pause){
console.log('requireLogin run')
if (!Meteor.userId()){
if (Meteor.loggingIn()){
this.render('loading');
} else {
console.log('accessDeny');
this.render('accessDenied');
}
pause();
} else {
this.render('postSubmit');
pause();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment