mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
implement missing getusers call
This commit is contained in:
parent
27da29525a
commit
eab4a05d78
1 changed files with 10 additions and 0 deletions
|
|
@ -42,6 +42,16 @@ class User {
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Get a list of all users
|
||||
* @returns array with all uids
|
||||
*
|
||||
* Get a list of all users.
|
||||
*/
|
||||
public static function getUsers(){
|
||||
return \OC_USER::getUsers();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Check if the user is logged in
|
||||
|
|
|
|||
Loading…
Reference in a new issue