We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7765d35 commit d1ae9abCopy full SHA for d1ae9ab
services/web/server/src/simcore_service_webserver/trash/_service.py
@@ -107,11 +107,12 @@ async def safe_empty_trash(
107
user_id: UserID,
108
on_explicitly_trashed_projects_deleted: asyncio.Event | None = None
109
):
110
+ # Delete explicitly trashed projects & notify
111
await _empty_explicitly_trashed_projects(app, product_name, user_id)
112
if on_explicitly_trashed_projects_deleted:
113
on_explicitly_trashed_projects_deleted.set()
114
- # This can be heavy!
115
+ # Delete explicitly trashed folders (and all implicitly trashed sub-folders and projects)
116
await _empty_explicitly_trashed_folders_and_content(app, product_name, user_id)
117
118
0 commit comments