Merge branch 'master' into clostridium

* master:
  Missing semicolon in login controller
This commit is contained in:
Matthew Dillon 2015-10-20 20:35:31 -07:00
commit fd9157007a

View file

@ -10,7 +10,7 @@ export default Ember.Controller.extend({
// 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.set('loading', true);
this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => {
this.transitionToRoute('login');
this.set('loading', false);