fix signin loop
This commit is contained in:
parent
9a7508e25d
commit
76749e2250
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user