summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-02-27 15:25:25 +0100
committerJoas Schilling <coding@schilljs.com>2019-03-01 10:03:05 +0100
commitb2db37ff9e8cd767864703c2f48eb3d1e9ed3752 (patch)
tree298f7b608f8824c4c8b0b162a915064f88ee8e08 /templates
parent5605e9ca26ddc4ddca453f8a0abbca52f741aa1b (diff)
Add an admin setting to restrict the app to groups
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/settings/admin/allowed-groups.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/settings/admin/allowed-groups.php b/templates/settings/admin/allowed-groups.php
new file mode 100644
index 000000000..1a50a918f
--- /dev/null
+++ b/templates/settings/admin/allowed-groups.php
@@ -0,0 +1,13 @@
+<?php
+/** @var array $_ */
+/** @var \OCP\IL10N $l */
+script('spreed', ['admin/allowed-groups']);
+style('spreed', ['settings-admin']);
+?>
+
+<div class="videocalls section" id="allowed_groups">
+ <h2><?php p($l->t('Limit to groups')) ?></h2>
+ <p class="settings-hint"><?php p($l->t('When at least one group is selected, only people of the listed groups can be part of conversations.')); ?></p>
+ <p class="settings-hint"><?php p($l->t('Guests can still join public conversations.')); ?></p>
+ <p class="settings-hint"><?php p($l->t('Users that can not use Talk anymore will still be listed as participants in their previous conversations and also their chat messages will be kept.')); ?></p>
+</div>