Skip to content

Instantly share code, notes, and snippets.

@lessless
Created March 14, 2015 08:11
Show Gist options
  • Save lessless/88896cc29b188066fc21 to your computer and use it in GitHub Desktop.
Save lessless/88896cc29b188066fc21 to your computer and use it in GitHub Desktop.
Ember.Route.reopen({
activate: function() {
if (this.get('session.currentUser.validated') || /signup\/validate/.test(document.URL)) {
this._super();
}
else
{
this.transitionTo('signup.complete');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment