diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-05-03 13:44:38 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-05-03 13:44:38 +0200 |
commit | df2eb96cc40893f60a1b63abbe585c448e0a6d9f (patch) | |
tree | 5d9d118788fbe3b2bbc054d090764c88c145bcec /lib/public | |
parent | 06293783e0d291a5595b55a3268d8bc0704277db (diff) | |
parent | 7aca13f14c2974a5e3f78cff628209c3964aaf04 (diff) | |
download | nextcloud-server-df2eb96cc40893f60a1b63abbe585c448e0a6d9f.tar.gz nextcloud-server-df2eb96cc40893f60a1b63abbe585c448e0a6d9f.zip |
Merge pull request #24389 from owncloud/login-by-email
Allow login by email address
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/iusermanager.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/public/iusermanager.php b/lib/public/iusermanager.php index 6442938a99b..00c0bbc8721 100644 --- a/lib/public/iusermanager.php +++ b/lib/public/iusermanager.php @@ -142,4 +142,11 @@ interface IUserManager { * @since 9.0.0 */ public function callForAllUsers (\Closure $callback, $search = ''); + + /** + * @param string $email + * @return IUser[] + * @since 9.1.0 + */ + public function getByEmail($email); } |