Fix login error transition

This commit is contained in:
Matthew Dillon 2015-09-15 10:59:57 -07:00
parent 065ab972e2
commit fa6507be66
2 changed files with 2 additions and 0 deletions

View file

@ -0,0 +1 @@
{{loading-panel}}

View file

@ -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);
});
});