diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-11-21 17:13:49 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-11-21 17:13:49 +0100 |
commit | 95d655b43ab4072be0813de5228bc8da7433ba88 (patch) | |
tree | d6eccaae00f8380d7da96f3f8233916d4b81b449 /apps/user_ldap/lib/User_LDAP.php | |
parent | fd366a6d8f8b987c3a72d7764848b80785c6d68e (diff) | |
download | nextcloud-server-enh/add-user-creation-date.tar.gz nextcloud-server-enh/add-user-creation-date.zip |
feat(users): Add user creation date support (WIP)enh/add-user-creation-date
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/user_ldap/lib/User_LDAP.php')
-rw-r--r-- | apps/user_ldap/lib/User_LDAP.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php index 6970a52d3d7..8f6065739f6 100644 --- a/apps/user_ldap/lib/User_LDAP.php +++ b/apps/user_ldap/lib/User_LDAP.php @@ -634,4 +634,7 @@ class User_LDAP extends BackendUtility implements IUserBackend, UserInterface, I public function getDisabledUserList(?int $limit = null, int $offset = 0, string $search = ''): array { throw new \Exception('This is implemented directly in User_Proxy'); } + + public function getUserCreationDate(string $uid): ?\DateTime { + } } |