diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-11-07 16:35:51 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-11-07 22:37:41 +0100 |
commit | 505722cc0d949ff5606b71757ec8d2ad2691b62b (patch) | |
tree | d636c7370b519ad0c8a02bd7c34fc477a67b6145 /lib/public/IUser.php | |
parent | 836ba4f4192d042921507f9eea4ff69b4d54480e (diff) | |
download | nextcloud-server-505722cc0d949ff5606b71757ec8d2ad2691b62b.tar.gz nextcloud-server-505722cc0d949ff5606b71757ec8d2ad2691b62b.zip |
do not offer to change display name or password, if not possible.
Fixes #12319
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/public/IUser.php')
-rw-r--r-- | lib/public/IUser.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/public/IUser.php b/lib/public/IUser.php index a3d7c6b71a6..5ee25111613 100644 --- a/lib/public/IUser.php +++ b/lib/public/IUser.php @@ -26,6 +26,8 @@ namespace OCP; +use OCP\UserInterface; + /** * Interface IUser * @@ -111,6 +113,7 @@ interface IUser { /** * Get the backend for the current user object * + * @return UserInterface * @since 15.0.0 */ public function getBackend(); |