From b726312ee7dd2fda617ee61a9fae679c40d64e06 Mon Sep 17 00:00:00 2001 From: Dimosthenis Nikoudis Date: Thu, 26 Sep 2024 22:43:55 +0300 Subject: [PATCH] feat(jicofo) add config parameter for ENABLE_MODERATOR_CHECKS --- docker-compose.yml | 1 + jicofo/rootfs/defaults/jicofo.conf | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 7c2e15e..3548839 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -339,6 +339,7 @@ services: - BRIDGE_STRESS_THRESHOLD - ENABLE_AUTH - ENABLE_AUTO_OWNER + - ENABLE_MODERATOR_CHECKS - ENABLE_CODEC_VP8 - ENABLE_CODEC_VP9 - ENABLE_CODEC_AV1 diff --git a/jicofo/rootfs/defaults/jicofo.conf b/jicofo/rootfs/defaults/jicofo.conf index 604060d..26bfece 100644 --- a/jicofo/rootfs/defaults/jicofo.conf +++ b/jicofo/rootfs/defaults/jicofo.conf @@ -142,6 +142,10 @@ jicofo { enable-auto-owner = {{ .Env.ENABLE_AUTO_OWNER | toBool }} {{ end }} + {{ if .Env.ENABLE_MODERATOR_CHECKS }} + enable-moderator-checks = {{ .Env.ENABLE_MODERATOR_CHECKS | toBool }} + {{ end }} + {{ if .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }} initial-timeout = "{{ .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }}" {{ end }}