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 34a3695 commit a65fb67Copy full SHA for a65fb67
services/web/server/src/simcore_service_webserver/workspaces/_workspaces_db.py
@@ -161,11 +161,11 @@ async def list_workspaces_for_user(
161
total_count = count_result.scalar()
162
163
result = await conn.stream(list_query)
164
- workspaces: list[UserWorkspaceAccessRightsDB] = [
+ items: list[UserWorkspaceAccessRightsDB] = [
165
UserWorkspaceAccessRightsDB.from_orm(row) async for row in result
166
]
167
168
- return cast(int, total_count), workspaces
+ return cast(int, total_count), items
169
170
171
async def get_workspace_for_user(
0 commit comments