Fix ACLs management of folders in Administration

The active (super) user was not able to add herself to the ACLs of a
different user because we were removing the active user from the users
search instead of removing the folder's owner.
This commit is contained in:
Francis Lachapelle
2016-12-01 15:40:38 -05:00
parent e997923c31
commit 0d95267fe5
4 changed files with 16 additions and 7 deletions
@@ -57,7 +57,7 @@
}
function userFilter($query) {
return User.$filter($query, stateFolder.$acl.users, { dry: true });
return User.$filter($query, stateFolder.$acl.users, { dry: true, uid: vm.user.uid });
}
function removeUser(user) {