diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-14 14:02:03 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-04-02 21:13:09 +0200 |
commit | dca555b7f34b305062b213f41ca83933b4602c7e (patch) | |
tree | 212e9442c00b3006ac56e56daf8b1c11ae59a320 /lib | |
parent | 6a40dce138cc91a1a2b3dc51572ddb2babf70301 (diff) | |
download | nextcloud-server-dca555b7f34b305062b213f41ca83933b4602c7e.tar.gz nextcloud-server-dca555b7f34b305062b213f41ca83933b4602c7e.zip |
Adds security section to the admin page
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
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 94df00551d4..2ae1e0682b7 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -273,6 +273,7 @@ class Manager implements IManager { $sections = [ 0 => [new Section('server', $this->l->t('Server settings'), 0, $this->url->imagePath('settings', 'admin.svg'))], 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)], 45 => [new Section('encryption', $this->l->t('Encryption'), 0, $this->url->imagePath('core', 'actions/password.svg'))], 98 => [new Section('additional', $this->l->t('Additional settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.svg'))], 99 => [new Section('tips-tricks', $this->l->t('Tips & tricks'), 0, $this->url->imagePath('settings', 'help.svg'))], |