Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-08-01 10:40:21 +0300
committerJulius Härtl <jus@bitgrid.net>2018-08-01 10:41:09 +0300
commit03971d3695f1abe7ec7012196447b07151768731 (patch)
treefaa3849d5ad6325b7fdaba64a9476236ab7c67e9 /lib/private/Settings
parent10de5f219cd7284f7238094f9f9fe09062a1649b (diff)
Move encryption settings to security
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/private/Settings')
-rw-r--r--lib/private/Settings/Admin/Encryption.php4
-rw-r--r--lib/private/Settings/Manager.php3
2 files changed, 3 insertions, 4 deletions
diff --git a/lib/private/Settings/Admin/Encryption.php b/lib/private/Settings/Admin/Encryption.php
index 012f5791610..65f507154ad 100644
--- a/lib/private/Settings/Admin/Encryption.php
+++ b/lib/private/Settings/Admin/Encryption.php
@@ -77,7 +77,7 @@ class Encryption implements ISettings {
* @return string the section ID, e.g. 'sharing'
*/
public function getSection() {
- return 'encryption';
+ return 'security';
}
/**
@@ -88,6 +88,6 @@ class Encryption implements ISettings {
* E.g.: 70
*/
public function getPriority() {
- return 0;
+ return 10;
}
}
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php
index e9f2a6f5976..260e33d1929 100644
--- a/lib/private/Settings/Manager.php
+++ b/lib/private/Settings/Manager.php
@@ -230,7 +230,6 @@ class Manager implements IManager {
1 => [new Section('server', $this->l->t('Basic settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.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, $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.svg'))],
98 => [new Section('additional', $this->l->t('Additional settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.svg'))],
];
@@ -270,7 +269,7 @@ class Manager implements IManager {
$form = new Admin\Mail($this->config);
$forms[$form->getPriority()] = [$form];
}
- if ($section === 'encryption') {
+ if ($section === 'security') {
/** @var ISettings $form */
$form = new Admin\Encryption($this->encryptionManager, $this->userManager);
$forms[$form->getPriority()] = [$form];