diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-06-27 19:16:21 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-06-27 19:16:21 +0200 |
commit | f3949cf1a81ee9f020c9cf42b0c68fda227448cf (patch) | |
tree | cbed3299cfc6ad332e2a930d490d457d89927502 /lib | |
parent | 221f558f6609cdfcb9e0bf9e89e398f5940254fe (diff) | |
download | nextcloud-server-f3949cf1a81ee9f020c9cf42b0c68fda227448cf.tar.gz nextcloud-server-f3949cf1a81ee9f020c9cf42b0c68fda227448cf.zip |
Add groupware settings section
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Settings/Manager.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index a974eb9808d..4ee594c090f 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -231,6 +231,7 @@ class Manager implements IManager { 5 => [new Section('sharing', $this->l->t('Sharing'), 0, $this->url->imagePath('core', 'actions/share.svg'))], 10 => [new Section('security', $this->l->t('Security'), 0, $this->url->imagePath('core', 'actions/password.svg'))], 45 => [new Section('encryption', $this->l->t('Encryption'), 0, $this->url->imagePath('core', 'actions/password.svg'))], + 50 => [new Section('groupware', $this->l->t('Groupware'), 0, $this->url->imagePath('core', 'places/contacts-dark.svg'))], 98 => [new Section('additional', $this->l->t('Additional settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.svg'))], ]; |