From 445eef97b3e46341bf43d3bf302970d84fb81127 Mon Sep 17 00:00:00 2001 From: Hristo Terezov Date: Thu, 16 Jan 2025 13:27:22 -0600 Subject: [PATCH] fix(interface-config-whitelist): cleanup Removes the following unused props. --- interface_config.js | 11 ----------- .../features/base/config/interfaceConfigWhitelist.ts | 3 --- 2 files changed, 14 deletions(-) diff --git a/interface_config.js b/interface_config.js index fff18fa6d4..07fa56d928 100644 --- a/interface_config.js +++ b/interface_config.js @@ -41,14 +41,6 @@ var interfaceConfig = { */ DISABLE_PRESENCE_STATUS: false, - /** - * Whether the ringing sound in the call/ring overlay is disabled. If - * {@code undefined}, defaults to {@code false}. - * - * @type {boolean} - */ - DISABLE_RINGING: false, - /** * Whether the speech to text transcription subtitles panel is disabled. * If {@code undefined}, defaults to {@code false}. @@ -70,9 +62,6 @@ var interfaceConfig = { ENABLE_DIAL_OUT: true, - // DEPRECATED. Animation no longer supported. - // ENABLE_FEEDBACK_ANIMATION: false, - FILM_STRIP_MAX_HEIGHT: 120, GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true, diff --git a/react/features/base/config/interfaceConfigWhitelist.ts b/react/features/base/config/interfaceConfigWhitelist.ts index 5492b93886..24fb17c4a2 100644 --- a/react/features/base/config/interfaceConfigWhitelist.ts +++ b/react/features/base/config/interfaceConfigWhitelist.ts @@ -22,15 +22,12 @@ export default [ 'DISABLE_DOMINANT_SPEAKER_INDICATOR', 'DISABLE_FOCUS_INDICATOR', 'DISABLE_PRIVATE_MESSAGES', - 'DISABLE_RINGING', 'DISABLE_TRANSCRIPTION_SUBTITLES', 'DISABLE_VIDEO_BACKGROUND', 'DISPLAY_WELCOME_PAGE_CONTENT', 'ENABLE_DIAL_OUT', - 'ENABLE_FEEDBACK_ANIMATION', 'FILM_STRIP_MAX_HEIGHT', 'GENERATE_ROOMNAMES_ON_WELCOME_PAGE', - 'HIDE_INVITE_MORE_HEADER', 'INDICATOR_FONT_SIZES', 'INITIAL_TOOLBAR_TIMEOUT', 'LANG_DETECTION',