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

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-03-19 16:28:17 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-03-19 16:28:17 +0300
commit880825e960ce224d94bb14101659e1fd05baf792 (patch)
treee0dea34c995aa5ef87aaae10fa1dcbe7db38c3ef /lib
parent15eb9e49aab6b07f3686f4abaac4c093a48f31df (diff)
Fix the sections order, show the map last
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib')
-rw-r--r--lib/Settings/WhereIsMyDataSettings.php2
-rw-r--r--lib/Settings/WhoHasAccessSettings.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Settings/WhereIsMyDataSettings.php b/lib/Settings/WhereIsMyDataSettings.php
index 4089ba5..d4a8785 100644
--- a/lib/Settings/WhereIsMyDataSettings.php
+++ b/lib/Settings/WhereIsMyDataSettings.php
@@ -49,7 +49,7 @@ class WhereIsMyDataSettings implements ISettings {
* @return int
*/
public function getPriority():int {
- return 10;
+ return 15;
}
}
diff --git a/lib/Settings/WhoHasAccessSettings.php b/lib/Settings/WhoHasAccessSettings.php
index 1209d17..69422c6 100644
--- a/lib/Settings/WhoHasAccessSettings.php
+++ b/lib/Settings/WhoHasAccessSettings.php
@@ -49,7 +49,7 @@ class WhoHasAccessSettings implements ISettings {
* @return int
*/
public function getPriority():int {
- return 15;
+ return 10;
}
}