fix(web) Remove no longer used config setting.

Av1 has already been enabled by default.
pull/1964/head
Jaya Allamsetty 1 week ago committed by Jaya Allamsetty
parent a53775c88d
commit 9fe5b8b651
  1. 1
      docker-compose.yml
  2. 6
      web/rootfs/defaults/settings-config.js

@ -136,7 +136,6 @@ services:
- START_WITH_AUDIO_MUTED - START_WITH_AUDIO_MUTED
- START_VIDEO_MUTED - START_VIDEO_MUTED
- START_WITH_VIDEO_MUTED - START_WITH_VIDEO_MUTED
- TESTING_AV1_SUPPORT
- TOKEN_AUTH_URL - TOKEN_AUTH_URL
- TOOLBAR_BUTTONS - TOOLBAR_BUTTONS
- TRANSLATION_LANGUAGES - TRANSLATION_LANGUAGES

@ -63,7 +63,6 @@
{{ $DISABLE_PROFILE := .Env.DISABLE_PROFILE | default "false" | toBool -}} {{ $DISABLE_PROFILE := .Env.DISABLE_PROFILE | default "false" | toBool -}}
{{ $ROOM_PASSWORD_DIGITS := .Env.ROOM_PASSWORD_DIGITS | default "false" -}} {{ $ROOM_PASSWORD_DIGITS := .Env.ROOM_PASSWORD_DIGITS | default "false" -}}
{{ $WHITEBOARD_ENABLED := or (.Env.WHITEBOARD_COLLAB_SERVER_PUBLIC_URL | default "" | toBool) (.Env.WHITEBOARD_COLLAB_SERVER_URL_BASE | default "" | toBool) }} {{ $WHITEBOARD_ENABLED := or (.Env.WHITEBOARD_COLLAB_SERVER_PUBLIC_URL | default "" | toBool) (.Env.WHITEBOARD_COLLAB_SERVER_URL_BASE | default "" | toBool) }}
{{ $TESTING_AV1_SUPPORT := .Env.TESTING_AV1_SUPPORT | default "false" | toBool -}}
// Video configuration. // Video configuration.
// //
@ -563,11 +562,6 @@ config.whiteboard = {
{{ end -}} {{ end -}}
}; };
// Testing
config.testing = {
enableAv1Support: {{ $TESTING_AV1_SUPPORT }}
};
// JaaS support: pre-configure image if JAAS_APP_ID was set. // JaaS support: pre-configure image if JAAS_APP_ID was set.
{{ if .Env.JAAS_APP_ID -}} {{ if .Env.JAAS_APP_ID -}}
{{ $JAAS_USE_STAGING := .Env.JAAS_USE_STAGING | default "false" | toBool -}} {{ $JAAS_USE_STAGING := .Env.JAAS_USE_STAGING | default "false" | toBool -}}

Loading…
Cancel
Save