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-11-11 13:01:23 -07:00

22 lines
649 B
JavaScript

import Ember from 'ember';
const { Controller, inject: { service } } = Ember;
export default Controller.extend({
session: service(),
actions: {
authenticate: function(identification, password) {
// Manually clean up because there might not be a transition
this.get('flashMessages').clearMessages();
this.transitionToRoute('loading').then(() => {
this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => {
this.transitionToRoute('login').then(() => {
this.get('flashMessages').error(error.error);
});
});
});
}
}
});