File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
services/web/server/src/simcore_service_webserver/workspaces Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 2323
2424async 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
6061async 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
8587async 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
120125async 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
162168async def delete_workspace (
163169 app : web .Application ,
170+ * ,
164171 user_id : UserID ,
165172 workspace_id : WorkspaceID ,
166173 product_name : ProductName ,
You can’t perform that action at this time.
0 commit comments