Fix login error transition
This commit is contained in:
parent
065ab972e2
commit
fa6507be66
2 changed files with 2 additions and 0 deletions
1
app/pods/application/loading/template.hbs
Normal file
1
app/pods/application/loading/template.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
{{loading-panel}}
|
|
@ -11,6 +11,7 @@ export default Ember.Controller.extend({
|
|||
this.get('flashMessages').clearMessages();
|
||||
this.transitionToRoute('loading').then(() => {
|
||||
session.authenticate(authenticator, credentials).then(null, (error)=> {
|
||||
this.transitionToRoute('login');
|
||||
this.get('flashMessages').error(error.error);
|
||||
});
|
||||
});
|
||||
|
|
Reference in a new issue