Use ajax error service in password reset

This commit is contained in:
Matthew Dillon 2015-12-02 10:13:22 -07:00
parent 689ea55bed
commit df5a50b1e2

View file

@ -1,11 +1,11 @@
import Ember from 'ember'; import Ember from 'ember';
import ajaxErrorNew from '../../../../utils/ajax-error-new';
const { Controller, inject: { service } } = Ember; const { Controller, inject: { service } } = Ember;
export default Controller.extend({ export default Controller.extend({
session: service(), session: service(),
ajax: service(), ajax: service(),
ajaxError: service('ajax-error'),
currentUser: service('session-account'), currentUser: service('session-account'),
actions: { actions: {
@ -15,12 +15,13 @@ export default Controller.extend({
this.get('ajax').post('/users/password', { data: data }).then(() => { this.get('ajax').post('/users/password', { data: data }).then(() => {
this.transitionToRoute('protected.users.show', id); this.transitionToRoute('protected.users.show', id);
this.get('flashMessages').information('Your password has been changed.'); this.get('flashMessages').information('Your password has been changed.');
}, (error) => { }, (errors) => {
ajaxErrorNew(error, this.get('flashMessages')); this.get('ajaxError').alert(errors);
}); });
}, },
cancel: function() { cancel: function() {
this.get('flashMessages').clearMessages();
this.transitionToRoute('protected.users.show', this.get('currentUser.account.id')); this.transitionToRoute('protected.users.show', this.get('currentUser.account.id'));
}, },
}, },