refactor(core): Consolidate executions controllers (no-changelog) (#8349)

This commit is contained in:
Iván Ovejero
2024-01-16 16:52:21 +01:00
committed by GitHub
parent b267bf07e3
commit 7bb2d1799e
9 changed files with 64 additions and 166 deletions

View File

@@ -131,8 +131,8 @@ export const setupTestServer = ({
break;
case 'executions':
const { executionsController } = await import('@/executions/executions.controller');
app.use(`/${REST_PATH_SEGMENT}/executions`, executionsController);
const { ExecutionsController } = await import('@/executions/executions.controller');
registerController(app, ExecutionsController);
break;
case 'variables':