Skip to content

Commit

Permalink
prevent revoking invite for already active users
Browse files Browse the repository at this point in the history
closes #3563
- before attempting to revoke an invitation, get updated model info
- reload route and show warning if user info has changed
  • Loading branch information
morficus authored and Maurice Williams committed Aug 5, 2014
1 parent aea2569 commit 18a1be8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
20 changes: 15 additions & 5 deletions core/client/controllers/settings/users/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,23 @@ var SettingsUserController = Ember.ObjectController.extend({
},
revoke: function () {
var self = this,
model = this.get('model'),
email = this.get('email');

this.get('model').destroyRecord().then(function () {
var notificationText = 'Invitation revoked. (' + email + ')';
self.notifications.showSuccess(notificationText, false);
}).catch(function (error) {
self.notifications.showAPIError(error);
//reload the model to get the most up-to-date user information
model.reload().then(function () {
if (self.get('invited')) {
model.destroyRecord().then(function () {
var notificationText = 'Invitation revoked. (' + email + ')';
self.notifications.showSuccess(notificationText, false);
}).catch(function (error) {
self.notifications.showAPIError(error);
});
} else {
//if the user is no longer marked as "invited", then show a warning and reload the route
self.get('target').send('reload');
self.notifications.showError('This user has already accepted the invitation.', {delayed: 500});
}
});
},

Expand Down
6 changes: 6 additions & 0 deletions core/client/routes/settings/users/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ var UsersIndexRoute = Ember.Route.extend(SimpleAuth.AuthenticatedRouteMixin, Pag
return true;
});
});
},

actions: {
reload: function () {
this.refresh();
}
}
});

Expand Down

0 comments on commit 18a1be8

Please sign in to comment.