aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/config.sample.php5
-rw-r--r--settings/personal.php1
-rw-r--r--settings/templates/personal.php2
3 files changed, 8 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 9cff1a4b876..60c184306d4 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1548,4 +1548,9 @@ $CONFIG = array(
*/
'gs.federation' => 'internal',
+/**
+ * show group membership on the personal page
+ */
+'settings.personal.showGroupMembership' => true
+
);
diff --git a/settings/personal.php b/settings/personal.php
index 5a6ff762088..458d1e8d428 100644
--- a/settings/personal.php
+++ b/settings/personal.php
@@ -160,6 +160,7 @@ if ($storageInfo['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED) {
$uid = $user->getUID();
$userData = $accountManager->getUser($user);
+$tmpl->assign('showGroupMembership', $config->getSystemValue('settings.personal.showGroupMembership', true));
$tmpl->assign('total_space', $totalSpace);
$tmpl->assign('usage_relative', $storageInfo['relative']);
$tmpl->assign('quota', $storageInfo['quota']);
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index f1e2458e55a..d3d45910af5 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -239,6 +239,7 @@
</div>
</div>
+<?php if ($_['showGroupMembership'] === true): ?>
<div id="groups" class="section">
<h2><?php p($l->t('Groups')); ?></h2>
<p><?php p($l->t('You are member of the following groups:')); ?></p>
@@ -246,6 +247,7 @@
<?php p(implode(', ', $_['groups'])); ?>
</p>
</div>
+<?php endif; ?>
<?php
if($_['passwordChangeSupported']) {