aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/IUserManager.php
diff options
context:
space:
mode:
authoryemkareems <yemkareems@gmail.com>2024-06-06 16:35:44 +0530
committeryemkareems <yemkareems@gmail.com>2024-07-08 15:42:55 +0530
commit4cb85f7c9e37af742d170373602709f8db2d525d (patch)
tree8d63eaabb24787cda4afc4c8b44b3914c4351dec /lib/public/IUserManager.php
parent76c875a5882753e37ef39015a1711b68e7ea0d0b (diff)
downloadnextcloud-server-4cb85f7c9e37af742d170373602709f8db2d525d.tar.gz
nextcloud-server-4cb85f7c9e37af742d170373602709f8db2d525d.zip
fix: rebased the branch with master and resolved conflicts
fix: added a new endpoint users/recent and getting users based on last login info in the same. Reverted old code that was breaking LDAP Signed-off-by: yemkareems <yemkareems@gmail.com>
Diffstat (limited to 'lib/public/IUserManager.php')
-rw-r--r--lib/public/IUserManager.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/IUserManager.php b/lib/public/IUserManager.php
index b4fb265f6eb..70420dc7c7a 100644
--- a/lib/public/IUserManager.php
+++ b/lib/public/IUserManager.php
@@ -124,6 +124,7 @@ interface IUserManager {
*/
public function getDisabledUsers(?int $limit = null, int $offset = 0, string $search = ''): array;
+ public function getUsersSortedByLastLogin(?int $limit = null, int $offset = 0, $search = '', $sortMode = 'lastLogin', $sortOrder = 'desc'): array;
/**
* Search known users (from phonebook sync) by displayName
*