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-06-23 16:52:06 -08:00

19 lines
580 B
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
authenticate: function() {
let credentials = this.getProperties('identification', 'password');
let authenticator = 'simple-auth-authenticator:token';
this.set('loading', true);
this.get('flashMessages').clearMessages();
this.get('session').authenticate(authenticator, credentials).then(()=>{
this.set('loading', false);
}, (error)=> {
this.set('loading', false);
this.get('flashMessages').error(error.error);
});
}
}
});