We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f466b5 commit 98a2866Copy full SHA for 98a2866
services/web/server/src/simcore_service_webserver/projects/_db_utils.py
@@ -131,10 +131,7 @@ async def _list_user_groups(
131
result = await conn.execute(
132
select(groups)
133
.select_from(groups.join(user_to_groups))
134
- .where(
135
- (user_to_groups.c.uid == user_id)
136
- & (user_to_groups.c.access_rights["read"].astext == "true")
137
- )
+ .where(user_to_groups.c.uid == user_id)
138
)
139
user_groups = await result.fetchall() or []
140
return user_groups
0 commit comments