summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-03-27 00:09:35 +0100
committerVincent Petry <pvince81@owncloud.com>2015-03-27 00:09:35 +0100
commitea93356598894d91968e39615789f934036cf38c (patch)
tree54c9f2d290da446517c878d90330e9e323bab788 /settings
parentd082e37270f19269cd13098cb013c8543f4a1843 (diff)
downloadnextcloud-server-ea93356598894d91968e39615789f934036cf38c.tar.gz
nextcloud-server-ea93356598894d91968e39615789f934036cf38c.zip
Don't append user in a filtered list if groups don't match
Diffstat (limited to 'settings')
-rw-r--r--settings/js/users/users.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index 7034972dd15..154003bb840 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -48,6 +48,10 @@ var UserList = {
* @returns table row created for this user
*/
add: function (user, sort) {
+ if (this.currentGid && _.indexOf(user.groups, this.currentGid) < 0) {
+ return;
+ }
+
var $tr = $userListBody.find('tr:first-child').clone();
// this removes just the `display:none` of the template row
$tr.removeAttr('style');