parent
c3e0da9cb4
commit
d353dc6e75
1 changed files with 9 additions and 0 deletions
|
@ -6,8 +6,17 @@ export default Ember.Controller.extend({
|
||||||
let user = this.get('model');
|
let user = this.get('model');
|
||||||
|
|
||||||
if (user.get('hasDirtyAttributes')) {
|
if (user.get('hasDirtyAttributes')) {
|
||||||
|
let attrs = user.changedAttributes(), roleChanged = false;
|
||||||
|
if (attrs.role) {
|
||||||
|
roleChanged = true;
|
||||||
|
}
|
||||||
user.save().then((user) => {
|
user.save().then((user) => {
|
||||||
this.get('flashMessages').clearMessages();
|
this.get('flashMessages').clearMessages();
|
||||||
|
if (roleChanged) {
|
||||||
|
// Need to clear the store so that canEdit and canAdd
|
||||||
|
// attributes reflect the new role.
|
||||||
|
this.get('store').unloadAll();
|
||||||
|
}
|
||||||
this.transitionToRoute('protected.users.show', user);
|
this.transitionToRoute('protected.users.show', user);
|
||||||
}, (err) => {
|
}, (err) => {
|
||||||
err.errors.forEach((error) => {
|
err.errors.forEach((error) => {
|
||||||
|
|
Reference in a new issue