aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-09-28 19:45:36 +0200
committerGitHub <noreply@github.com>2024-09-28 19:45:36 +0200
commita0b2297c536923867ed3f8e489dabe8a278ac0be (patch)
treec8d14a6dc5db9c892d6a3bec0a012c99babcaf2a /lib
parent31ad1c5f552265d3e58496cde85914e58f0e3e2d (diff)
parentb5256181a49813063a8e6490316f7eed3a4341d5 (diff)
downloadnextcloud-server-a0b2297c536923867ed3f8e489dabe8a278ac0be.tar.gz
nextcloud-server-a0b2297c536923867ed3f8e489dabe8a278ac0be.zip
Merge pull request #48424 from nextcloud/fix/declarative-settings-priority
fix(settings): Sort all settings - incl declarative settings - by priority
Diffstat (limited to 'lib')
-rw-r--r--lib/public/Settings/IManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Settings/IManager.php b/lib/public/Settings/IManager.php
index d73e4055f31..0bb1a396671 100644
--- a/lib/public/Settings/IManager.php
+++ b/lib/public/Settings/IManager.php
@@ -89,7 +89,7 @@ interface IManager {
/**
* Returns a list of admin settings that the given user can use for the give section
*
- * @return array<int, list<ISettings>> The array of admin settings there admin delegation is allowed.
+ * @return array<int, list<ISettings>> List of admin-settings the user has access to, with priority as key.
* @since 23.0.0
*/
public function getAllowedAdminSettings(string $section, IUser $user): array;