diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-28 19:45:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-28 19:45:36 +0200 |
commit | a0b2297c536923867ed3f8e489dabe8a278ac0be (patch) | |
tree | c8d14a6dc5db9c892d6a3bec0a012c99babcaf2a /lib | |
parent | 31ad1c5f552265d3e58496cde85914e58f0e3e2d (diff) | |
parent | b5256181a49813063a8e6490316f7eed3a4341d5 (diff) | |
download | nextcloud-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.php | 2 |
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; |