summaryrefslogtreecommitdiffstats
path: root/lib/public/iuser.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-11-24 23:28:24 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-11-25 22:23:34 +0100
commitb799e42b4e4f9ec1dd1fa9b93dd036581fbf2e92 (patch)
treec5fae8ae4dc2bd6959b2d423e859fbcdb3241fb8 /lib/public/iuser.php
parentc25a7cc4daf486b7ad8e50a5209acda061734d6c (diff)
downloadnextcloud-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.php8
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();
}