diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2018-11-08 15:13:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 15:13:24 +0100 |
commit | 42121fe4d71237f769831e2b33def779e0566e7c (patch) | |
tree | bed9f56332e41d827fc4258ec5d440d7dcdefa25 /lib | |
parent | 13d7a2746c9289419a2d473880811221b09addd0 (diff) | |
parent | 505722cc0d949ff5606b71757ec8d2ad2691b62b (diff) | |
download | nextcloud-server-42121fe4d71237f769831e2b33def779e0566e7c.tar.gz nextcloud-server-42121fe4d71237f769831e2b33def779e0566e7c.zip |
Merge pull request #12335 from nextcloud/fix/12319/respect-fixed-usernames
do not offer to change display name or password, if not possible.
Diffstat (limited to 'lib')
-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(); |