Handle password change errors
This commit is contained in:
parent
936edd41d7
commit
031a83808c
1 changed files with 7 additions and 3 deletions
|
@ -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() {
|
||||
|
|
Reference in a new issue