Skip to content

Commit 4822f82

Browse files
committed
acceptance test passes
1 parent 73b136d commit 4822f82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/web/server/src/simcore_service_webserver/groups/_groups_repository.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ async def list_users_in_group(
503503
)
504504
.where(
505505
((user_to_groups.c.uid == user_id) & (user_to_groups.c.gid == group_id))
506-
| (groups.c.type == GroupType.PRIMARY)
506+
| (groups.c.type == GroupType.PRIMARY) # TODO: at least active users!
507507
)
508508
)
509509
group_row = result.first()

0 commit comments

Comments
 (0)