summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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');