Missing semicolon in login controller

This commit is contained in:
Matthew Dillon 2015-10-20 20:35:20 -07:00
parent ddc2eb725c
commit c7a34023b5

View file

@ -10,7 +10,7 @@ export default Ember.Controller.extend({
// Manually clean up because there might not be a transition // Manually clean up because there might not be a transition
this.get('flashMessages').clearMessages(); this.get('flashMessages').clearMessages();
let { identification, password } = this.getProperties('identification', 'password'); let { identification, password } = this.getProperties('identification', 'password');
this.set('loading', true) this.set('loading', true);
this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => { this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => {
this.transitionToRoute('login'); this.transitionToRoute('login');
this.set('loading', false); this.set('loading', false);