Skip to content
Snippets Groups Projects
Commit 59bb9931 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

Adjust user interface to additions around displayName Handling

parent 4b7b0920
No related branches found
No related tags found
No related merge requests found
......@@ -57,4 +57,19 @@ interface OC_User_Interface {
*/
public function userExists($uid);
/**
* @brief get display name of the user
* @param $uid user ID of the user
* @return display name
*/
public function getDisplayName($uid);
/**
* @brief Get a list of all display names
* @returns array with all displayNames (value) and the correspondig uids (key)
*
* Get a list of all display names and user ids.
*/
public function getDisplayNames($search = '', $limit = null, $offset = null);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment