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

22 lines
718 B
JavaScript

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