Skip to content

Commit 18420af

Browse files
committed
rm from app
1 parent 8ffdf32 commit 18420af

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

services/web/server/src/simcore_service_webserver/application.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
from .licenses.plugin import setup_licenses
3030
from .login.plugin import setup_login
3131
from .long_running_tasks import setup_long_running_tasks
32-
from .meta_modeling.plugin import setup_meta_modeling
3332
from .notifications.plugin import setup_notifications
3433
from .payments.plugin import setup_payments
3534
from .products.plugin import setup_products
@@ -51,7 +50,6 @@
5150
from .tracing import setup_app_tracing
5251
from .trash.plugin import setup_trash
5352
from .users.plugin import setup_users
54-
from .version_control.plugin import setup_version_control
5553
from .wallets.plugin import setup_wallets
5654
from .workspaces.plugin import setup_workspaces
5755

@@ -137,9 +135,6 @@ def create_application() -> web.Application:
137135

138136
# projects
139137
setup_projects(app)
140-
# project add-ons
141-
setup_version_control(app)
142-
setup_meta_modeling(app)
143138

144139
# licenses
145140
setup_licenses(app)

services/web/server/src/simcore_service_webserver/application_settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,15 +358,15 @@ class ApplicationSettings(BaseApplicationSettings, MixinLoggingSettings):
358358
WEBSERVER_DB_LISTENER: bool = True
359359
WEBSERVER_FOLDERS: bool = True
360360
WEBSERVER_GROUPS: bool = True
361-
WEBSERVER_META_MODELING: bool = True
361+
WEBSERVER_META_MODELING: bool = False
362362
WEBSERVER_NOTIFICATIONS: bool = True
363363
WEBSERVER_PRODUCTS: bool = True
364364
WEBSERVER_PROFILING: bool = False
365365
WEBSERVER_PUBLICATIONS: bool = True
366366
WEBSERVER_REMOTE_DEBUG: bool = True
367367
WEBSERVER_SOCKETIO: bool = True
368368
WEBSERVER_TAGS: bool = True
369-
WEBSERVER_VERSION_CONTROL: bool = True
369+
WEBSERVER_VERSION_CONTROL: bool = False
370370
WEBSERVER_WALLETS: bool = True
371371
WEBSERVER_WORKSPACES: bool = True
372372

0 commit comments

Comments
 (0)