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-08-24 12:28:14 -07:00

19 lines
631 B
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
authenticate: function() {
let credentials = this.getProperties('identification', 'password');
let session = this.get('session');
let authenticator = 'simple-auth-authenticator:token';
// Manually clean up because there might not be a transition
this.get('flashMessages').clearMessages();
this.transitionToRoute('loading').then(() => {
session.authenticate(authenticator, credentials).then(null, (error)=> {
this.get('flashMessages').error(error.error);
});
});
}
}
});