Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created January 21, 2015 12:40
Show Gist options
  • Save codedmart/94ce002f1d9706ce4aa2 to your computer and use it in GitHub Desktop.
Save codedmart/94ce002f1d9706ce4aa2 to your computer and use it in GitHub Desktop.
var Auth = require('auth');
console.log(Auth.Authentication);
module.exports.Authentication = {
statics: {
willTransitionTo: (transition) => {
var cursor = structure.cursor();
var currentUser = cursor.get('currentUser');
console.log('currentUser: ', currentUser);
if (!currentUser) {
Login.attemptedTransition = transition
transition.redirect('/login');
}
}
}
};
var Auth = require('auth');
console.log(Auth.Authentication);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment