Do not show inactive users in group members dropdown

This commit is contained in:
Frédéric Guillot
2018-05-07 10:48:43 -07:00
parent 143e7bb987
commit cc17cb3207
2 changed files with 3 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ class GroupMemberModel extends Base
return $this->db->table(UserModel::TABLE)
->notInSubquery('id', $subquery)
->eq('is_active', 1)
->findAll();
}