Skip to content

Commit 8927e20

Browse files
committed
cleanup
1 parent bf93075 commit 8927e20

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

services/web/server/src/simcore_service_webserver/workspaces/_workspaces_api.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
async def create_workspace(
2525
app: web.Application,
26+
*,
2627
user_id: UserID,
2728
name: str,
2829
description: str | None,
@@ -59,6 +60,7 @@ async def create_workspace(
5960

6061
async def get_workspace(
6162
app: web.Application,
63+
*,
6264
user_id: UserID,
6365
workspace_id: WorkspaceID,
6466
product_name: ProductName,
@@ -84,8 +86,10 @@ async def get_workspace(
8486

8587
async def list_workspaces(
8688
app: web.Application,
89+
*,
8790
user_id: UserID,
8891
product_name: ProductName,
92+
trashed: bool,
8993
offset: NonNegativeInt,
9094
limit: int,
9195
order_by: OrderBy,
@@ -94,6 +98,7 @@ async def list_workspaces(
9498
app,
9599
user_id=user_id,
96100
product_name=product_name,
101+
trashed=trashed,
97102
offset=offset,
98103
limit=limit,
99104
order_by=order_by,
@@ -119,6 +124,7 @@ async def list_workspaces(
119124

120125
async def update_workspace(
121126
app: web.Application,
127+
*,
122128
user_id: UserID,
123129
workspace_id: WorkspaceID,
124130
name: str,
@@ -161,6 +167,7 @@ async def update_workspace(
161167

162168
async def delete_workspace(
163169
app: web.Application,
170+
*,
164171
user_id: UserID,
165172
workspace_id: WorkspaceID,
166173
product_name: ProductName,

0 commit comments

Comments
 (0)