Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Accounts.onLogin(function() {
  2. return Router.render('/dashboard');
  3. });
  4.  
  5. var goToDashboard = function(pause) {
  6. if (Meteor.user()) {
  7. Router.go('dashboard');
  8. pause();
  9. }
  10. };
  11.  
  12. Router.onBeforeAction(mustBeSignedIn, {except: ['signin']});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement