We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 026ffb5 commit 04e537fCopy full SHA for 04e537f
services/web/server/src/simcore_service_webserver/application.py
@@ -49,6 +49,7 @@
49
from .studies_dispatcher.plugin import setup_studies_dispatcher
50
from .tags.plugin import setup_tags
51
from .tracing import setup_app_tracing
52
+from .trash.plugin import setup_trash
53
from .users.plugin import setup_users
54
from .version_control.plugin import setup_version_control
55
from .wallets.plugin import setup_wallets
@@ -143,6 +144,9 @@ def create_application() -> web.Application:
143
144
# licenses
145
setup_licenses(app)
146
147
+ # trash add-on
148
+ setup_trash(app)
149
+
150
# tagging
151
setup_scicrunch(app)
152
setup_tags(app)
0 commit comments