Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

BC-7906 - Remove tldraw env vars #36

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/modules/data/env-config/envConfigDefaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ export const defaultConfigEnvs: ConfigResponse = {
FEATURE_LTI_TOOLS_TAB_ENABLED: true,
FEATURE_SHOW_MIGRATION_WIZARD: false,
FEATURE_TLDRAW_ENABLED: false,
TLDRAW__ASSETS_ENABLED: false,
TLDRAW__ASSETS_MAX_SIZE: -1,
TLDRAW__ASSETS_ALLOWED_MIME_TYPES_LIST: [],
ALERT_STATUS_URL: null,
FEATURE_ES_COLLECTIONS_ENABLED: false,
FEATURE_EXTENSIONS_ENABLED: false,
Expand Down
20 changes: 1 addition & 19 deletions src/serverApi/v3/models/config-response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,24 +101,6 @@ export interface ConfigResponse {
* @memberof ConfigResponse
*/
FEATURE_TLDRAW_ENABLED: boolean;
/**
*
* @type {boolean}
* @memberof ConfigResponse
*/
TLDRAW__ASSETS_ENABLED: boolean;
/**
*
* @type {number}
* @memberof ConfigResponse
*/
TLDRAW__ASSETS_MAX_SIZE: number;
/**
*
* @type {Array<string>}
* @memberof ConfigResponse
*/
TLDRAW__ASSETS_ALLOWED_MIME_TYPES_LIST: Array<string>;
/**
*
* @type {boolean}
Expand Down Expand Up @@ -425,6 +407,6 @@ export interface ConfigResponse {
* @memberof ConfigResponse
*/
FEATURE_AI_TUTOR_ENABLED: boolean;
}
}


Loading