diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-24 23:28:24 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-25 22:23:34 +0100 |
commit | b799e42b4e4f9ec1dd1fa9b93dd036581fbf2e92 (patch) | |
tree | c5fae8ae4dc2bd6959b2d423e859fbcdb3241fb8 /lib/public/iuser.php | |
parent | c25a7cc4daf486b7ad8e50a5209acda061734d6c (diff) | |
download | nextcloud-server-b799e42b4e4f9ec1dd1fa9b93dd036581fbf2e92.tar.gz nextcloud-server-b799e42b4e4f9ec1dd1fa9b93dd036581fbf2e92.zip |
Introduce \OCP\IUser::getEMailAddress()
Diffstat (limited to 'lib/public/iuser.php')
-rw-r--r-- | lib/public/iuser.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/iuser.php b/lib/public/iuser.php index 6cbcfbf2312..1e52cd59036 100644 --- a/lib/public/iuser.php +++ b/lib/public/iuser.php @@ -144,4 +144,12 @@ interface IUser { * @since 8.0.0 */ public function setEnabled($enabled); + + /** + * get the users email address + * + * @return string|null + * @since 9.0.0 + */ + public function getEMailAddress(); } |