Handle password change errors

This commit is contained in:
Matthew Dillon 2015-11-13 13:43:55 -07:00
parent 936edd41d7
commit 031a83808c

View file

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