Clear store on role change

Fixes #18.
This commit is contained in:
Matthew Dillon 2015-10-12 15:05:02 -07:00
parent c3e0da9cb4
commit d353dc6e75

View file

@ -6,8 +6,17 @@ export default Ember.Controller.extend({
let user = this.get('model');
if (user.get('hasDirtyAttributes')) {
let attrs = user.changedAttributes(), roleChanged = false;
if (attrs.role) {
roleChanged = true;
}
user.save().then((user) => {
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);
}, (err) => {
err.errors.forEach((error) => {