From 3f03f27cdbebc35f709628e6f3046d92a9fb98b9 Mon Sep 17 00:00:00 2001 From: Joshua Sangmeister Date: Thu, 14 May 2020 13:29:55 +0200 Subject: [PATCH] added jitsi settings to template and readme --- SETTINGS.rst | 11 +++++++++++ openslides/utils/settings.py.tpl | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/SETTINGS.rst b/SETTINGS.rst index 9dc563b22..64163c001 100644 --- a/SETTINGS.rst +++ b/SETTINGS.rst @@ -66,6 +66,17 @@ To enable it, set:: ENABLE_ELECTRONIC_VOTING = True +Jitsi integration +================= + +To enable the audio conference with Jitsi Meet, you have to set the following variables: + +- `JITSI_DOMAIN`: must contain an url to a Jitsi server +- `JITSI_ROOM_NAME`: the name of the room that should be used +- `JITSI_PASSWORD`: (optional) the password of the room. Will be +applied automatically from the settings. + + Logging ======= diff --git a/openslides/utils/settings.py.tpl b/openslides/utils/settings.py.tpl index 845ca4d3a..70cca40e0 100644 --- a/openslides/utils/settings.py.tpl +++ b/openslides/utils/settings.py.tpl @@ -133,6 +133,12 @@ if ENABLE_SAML: ENABLE_ELECTRONIC_VOTING = False +# Jitsi integration +# JITSI_DOMAIN = None +# JITSI_ROOM_NAME = None +# JITSI_PASSWORD = None + + # Internationalization # https://docs.djangoproject.com/en/1.10/topics/i18n/