fix: show dormant and suspended users in groups (#10333)

* fix: show dormant and suspended users in groups

* added status column
This commit is contained in:
Kira Pilot
2023-10-20 11:36:00 -04:00
committed by GitHub
parent ac322724b0
commit ed5567ba28
7 changed files with 92 additions and 47 deletions

View File

@ -20,8 +20,6 @@ WHERE
(group_members.group_id = @group_id
OR
organization_members.organization_id = @group_id)
AND
users.status = 'active'
AND
users.deleted = 'false';