feat(jicofo) add config parameter for ENABLE_MODERATOR_CHECKS

This commit is contained in:
Dimosthenis Nikoudis
2024-09-26 22:43:55 +03:00
committed by GitHub
parent 2d39624b5f
commit b726312ee7
2 changed files with 5 additions and 0 deletions

View File

@@ -339,6 +339,7 @@ services:
- BRIDGE_STRESS_THRESHOLD - BRIDGE_STRESS_THRESHOLD
- ENABLE_AUTH - ENABLE_AUTH
- ENABLE_AUTO_OWNER - ENABLE_AUTO_OWNER
- ENABLE_MODERATOR_CHECKS
- ENABLE_CODEC_VP8 - ENABLE_CODEC_VP8
- ENABLE_CODEC_VP9 - ENABLE_CODEC_VP9
- ENABLE_CODEC_AV1 - ENABLE_CODEC_AV1

View File

@@ -142,6 +142,10 @@ jicofo {
enable-auto-owner = {{ .Env.ENABLE_AUTO_OWNER | toBool }} enable-auto-owner = {{ .Env.ENABLE_AUTO_OWNER | toBool }}
{{ end }} {{ end }}
{{ if .Env.ENABLE_MODERATOR_CHECKS }}
enable-moderator-checks = {{ .Env.ENABLE_MODERATOR_CHECKS | toBool }}
{{ end }}
{{ if .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }} {{ if .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }}
initial-timeout = "{{ .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }}" initial-timeout = "{{ .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }}"
{{ end }} {{ end }}