Skip to content

Commit 67f973e

Browse files
committed
note
1 parent 08262d4 commit 67f973e

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

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

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ async def trash_workspace(
5959
)
6060

6161
# IMPLICIT trash
62-
child_folders: list[FolderID] = [] # TODO: find children. Check with MD
62+
child_folders: list[FolderID] = (
63+
[]
64+
# NOTE: follows up with https://github.com/ITISFoundation/osparc-simcore/issues/7034
65+
)
6366

6467
for folder_id in child_folders:
6568
await trash_folder(
@@ -70,7 +73,10 @@ async def trash_workspace(
7073
force_stop_first=force_stop_first,
7174
)
7275

73-
child_projects: list[ProjectID] = [] # TODO: find children. Check with MD
76+
child_projects: list[ProjectID] = (
77+
[]
78+
# NOTE: follows up with https://github.com/ITISFoundation/osparc-simcore/issues/7034
79+
)
7480

7581
for project_id in child_projects:
7682
await trash_project(
@@ -104,7 +110,10 @@ async def untrash_workspace(
104110
updates=WorkspaceUpdateDB(trashed=None, trashed_by=None),
105111
)
106112

107-
child_folders: list[FolderID] = [] # TODO: find children. Check with MD
113+
child_folders: list[FolderID] = (
114+
[]
115+
# NOTE: follows up with https://github.com/ITISFoundation/osparc-simcore/issues/7034
116+
)
108117

109118
for folder_id in child_folders:
110119
await untrash_folder(
@@ -114,7 +123,10 @@ async def untrash_workspace(
114123
folder_id=folder_id,
115124
)
116125

117-
child_projects: list[ProjectID] = [] # TODO: find children. Check with MD
126+
child_projects: list[ProjectID] = (
127+
[]
128+
# NOTE: follows up with https://github.com/ITISFoundation/osparc-simcore/issues/7034
129+
)
118130

119131
for project_id in child_projects:
120132
await untrash_project(

0 commit comments

Comments
 (0)