File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
services/web/server/src/simcore_service_webserver/folders Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -307,6 +307,7 @@ async def get_for_user_or_workspace(
307307
308308
309309async def update (
310+ # pylint: disable=too-many-arguments
310311 app : web .Application ,
311312 connection : AsyncConnection | None = None ,
312313 * ,
@@ -317,9 +318,9 @@ async def update(
317318 parent_folder_id : FolderID | None | UnSet = UnSet .VALUE ,
318319 trashed : datetime | None | UnSet = UnSet .VALUE ,
319320 trashed_explicitly : bool | UnSet = UnSet .VALUE ,
320- trashed_by : UserID | UnSet = UnSet .VALUE ,
321+ trashed_by : UserID | UnSet = UnSet .VALUE , # who trashed
321322 workspace_id : WorkspaceID | None | UnSet = UnSet .VALUE ,
322- user_id : UserID | None | UnSet = UnSet .VALUE ,
323+ user_id : UserID | None | UnSet = UnSet .VALUE , # ownership
323324) -> FolderDB :
324325 """
325326 Batch/single patch of folder/s
You can’t perform that action at this time.
0 commit comments