aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorPytal <24800714+Pytal@users.noreply.github.com>2023-12-01 08:42:04 -0800
committerGitHub <noreply@github.com>2023-12-01 08:42:04 -0800
commit294330454bbb50405768d059a907ed397ac25dd4 (patch)
tree8ae6297e1deab2f4b26eca6a5addec46e7f30f07 /lib/public
parent0fc8c15cd2b42a5410a0a31eaf52f6a88ab05253 (diff)
parentadc43eae9b143c2c89a0fcb3e3222cbd68038217 (diff)
downloadnextcloud-server-294330454bbb50405768d059a907ed397ac25dd4.tar.gz
nextcloud-server-294330454bbb50405768d059a907ed397ac25dd4.zip
Merge pull request #40169 from nextcloud/enh/load-disabled-users-directly
enh(settings): Load from disabled users endpoint
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/User/Backend/IProvideEnabledStateBackend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/User/Backend/IProvideEnabledStateBackend.php b/lib/public/User/Backend/IProvideEnabledStateBackend.php
index d03beacd7b8..f12d99fd1a6 100644
--- a/lib/public/User/Backend/IProvideEnabledStateBackend.php
+++ b/lib/public/User/Backend/IProvideEnabledStateBackend.php
@@ -52,5 +52,5 @@ interface IProvideEnabledStateBackend {
*
* @return string[]
*/
- public function getDisabledUserList(int $offset = 0, ?int $limit = null): array;
+ public function getDisabledUserList(?int $limit = null, int $offset = 0): array;
}