Missing semicolon in login controller
This commit is contained in:
parent
ddc2eb725c
commit
c7a34023b5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Reference in a new issue