diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-05-02 14:19:10 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-05-02 14:20:59 +0200 |
commit | b10dcfc3b7e84c97d4dba4f7c63b4dff2fbc310b (patch) | |
tree | 05929798758ba15073d40fbfd445f46ea8498987 /lib/public/iusermanager.php | |
parent | d7eb17bdc023c6e31d24a0636e0f5cad58aa876f (diff) | |
download | nextcloud-server-b10dcfc3b7e84c97d4dba4f7c63b4dff2fbc310b.tar.gz nextcloud-server-b10dcfc3b7e84c97d4dba4f7c63b4dff2fbc310b.zip |
Fixing local event delivery for calendar events based on the email address
Diffstat (limited to 'lib/public/iusermanager.php')
-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); } |