LDAP: user proxy must support canChangeAvatar too

This commit is contained in:
Arthur Schiwon 2013-11-22 13:24:38 +01:00
parent 8ccac86c98
commit 6fdce3b7e9
1 changed files with 9 additions and 0 deletions

View File

@ -163,6 +163,15 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface {
return $this->handleRequest($uid, 'getDisplayName', array($uid));
}
/**
* @brief checks whether the user is allowed to change his avatar in ownCloud
* @param $uid string the ownCloud user name
* @return boolean either the user can or cannot
*/
public function canChangeAvatar($uid) {
return $this->handleRequest($uid, 'canChangeAvatar', array($uid));
}
/**
* @brief Get a list of all display names
* @returns array with all displayNames (value) and the corresponding uids (key)