This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/login/controller.js
2015-10-20 20:35:20 -07:00

22 lines
714 B
JavaScript

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.set('loading', false);
}
}
});