fix signin loop

This commit is contained in:
Lisa P 2016-01-13 15:29:37 +01:00
parent 9a7508e25d
commit 76749e2250

View File

@ -9,7 +9,12 @@ export default TravisRoute.extend({
},
activate() {
return this.auth.signIn();
if (this.auth.get('signedIn')) {
this.transitionTo('main');
} else {
this.auth.signIn();
}
}
});