diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js index d1a41b7..ec1077b 100644 --- a/app/pods/login/controller.js +++ b/app/pods/login/controller.js @@ -3,20 +3,19 @@ import Ember from 'ember'; export default Ember.Controller.extend({ session: Ember.inject.service('session'), - loading: false, - actions: { authenticate: function() { // Manually clean up because there might not be a transition this.get('flashMessages').clearMessages(); + let { identification, password } = this.getProperties('identification', 'password'); - this.set('loading', true); - this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => { - this.transitionToRoute('login'); - this.set('loading', false); - this.get('flashMessages').error(error.error); + this.transitionToRoute('loading').then(() => { + this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => { + this.transitionToRoute('login').then(() => { + this.get('flashMessages').error(error.error); + }); + }); }); - this.set('loading', false); } } }); diff --git a/app/pods/login/template.hbs b/app/pods/login/template.hbs index 7d3f5ac..c56ca42 100644 --- a/app/pods/login/template.hbs +++ b/app/pods/login/template.hbs @@ -1,16 +1,12 @@ {{#x-application invalidateSession="invalidateSession"}} - {{#if loading}} - {{loading-panel}} - {{else}} -
-