verbose_name=_("Allow starting and stopping recording"),
default=True,
description=_(
help_text=_(
"Allows users to manually start and stop recording. If recording is set to auto-start, this forces the whole meeting to be recorded. If auto-start is disabled, this causes the recording to be discarded."
),
)
...
...
@@ -133,7 +133,7 @@ class Meeting(models.Model):
webcams_only_for_moderator=models.BooleanField(
verbose_name=_("Webcams only for moderators"),
default=False,
description=_(
help_text=_(
"Webcam streams of participants are only visible for moderators, not for other participants."
),
)
...
...
@@ -141,12 +141,12 @@ class Meeting(models.Model):
mute_on_start=models.BooleanField(
verbose_name=_("Mute on start"),
default=False,
description=_("Participants are muted when they join the meeting"),
help_text=_("Participants are muted when they join the meeting"),
)
allow_mods_to_unmute_users=models.BooleanField(
verbose_name=_("Allow moerators to unmute"),
default=False,
description=_("Allow moderators to unmute other users (this is a privacy risk)"),
help_text=_("Allow moderators to unmute other users (this is a privacy risk)"),