diff --git a/src/modules/data/env-config/envConfigDefaults.ts b/src/modules/data/env-config/envConfigDefaults.ts index d02c96d..fb3eada 100644 --- a/src/modules/data/env-config/envConfigDefaults.ts +++ b/src/modules/data/env-config/envConfigDefaults.ts @@ -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, diff --git a/src/serverApi/v3/models/config-response.ts b/src/serverApi/v3/models/config-response.ts index fef6f00..3f620cf 100644 --- a/src/serverApi/v3/models/config-response.ts +++ b/src/serverApi/v3/models/config-response.ts @@ -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} - * @memberof ConfigResponse - */ - TLDRAW__ASSETS_ALLOWED_MIME_TYPES_LIST: Array; /** * * @type {boolean} @@ -425,6 +407,6 @@ export interface ConfigResponse { * @memberof ConfigResponse */ FEATURE_AI_TUTOR_ENABLED: boolean; -} + }