diff --git a/apps/server/src/migrations/mikro-orm/Migration20241120100616.ts b/apps/server/src/migrations/mikro-orm/Migration20241120100616.ts index a5f04736565..86194ddc0b0 100644 --- a/apps/server/src/migrations/mikro-orm/Migration20241120100616.ts +++ b/apps/server/src/migrations/mikro-orm/Migration20241120100616.ts @@ -57,6 +57,7 @@ export class Migration20241120100616 extends Migration { numberOfDeletedTools += 1; if (tool.contextType === 'boardElement') { await this.driver.nativeDelete('boardnodes', { _id: tool.contextId }); + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions console.info(`deleted boardnode: ${tool.contextId}`); numberOfDeletedElements += 1; } diff --git a/config/default.schema.json b/config/default.schema.json index d62209b5606..00afd8e6a69 100644 --- a/config/default.schema.json +++ b/config/default.schema.json @@ -1407,12 +1407,12 @@ }, "FEATURE_CTL_TOOLS_TAB_ENABLED": { "type": "boolean", - "default": false, + "default": true, "description": "Enables new CTL-tool tab in a course" }, "FEATURE_LTI_TOOLS_TAB_ENABLED": { "type": "boolean", - "default": true, + "default": false, "description": "Enables old LTI-tool tab in a course" }, "FEATURE_SHOW_OUTDATED_USERS": { @@ -1432,7 +1432,7 @@ }, "FEATURE_COLUMN_BOARD_EXTERNAL_TOOLS_ENABLED": { "type": "boolean", - "default": false, + "default": true, "description": "Enables external tools on the column board" }, "FEATURE_PREFERRED_CTL_TOOLS_ENABLED": { diff --git a/config/development.json b/config/development.json index 382b6df002f..839b8e21bfd 100644 --- a/config/development.json +++ b/config/development.json @@ -77,7 +77,6 @@ "FEATURE_COLUMN_BOARD_SUBMISSIONS_ENABLED": true, "FEATURE_COLUMN_BOARD_LINK_ELEMENT_ENABLED": true, "FEATURE_COLUMN_BOARD_COLLABORATIVE_TEXT_EDITOR_ENABLED": true, - "FEATURE_COLUMN_BOARD_EXTERNAL_TOOLS_ENABLED": true, "FEATURE_BOARD_LAYOUT_ENABLED": true, "SCHULCONNEX_CLIENT": { "API_URL": "http://localhost:8888/v1/",