diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-30 13:57:54 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-02 09:14:41 +0100 |
commit | df6fc6cc70ceb06e0b9d8a7ff9ce4cbf2f74e710 (patch) | |
tree | 37679559a66256e7d3457d5a93d2534d2e34aa44 /lib/public | |
parent | 7c8a84e7ac31a0f4c1d59ad1c13ca0c5cce65d8e (diff) | |
download | nextcloud-server-df6fc6cc70ceb06e0b9d8a7ff9ce4cbf2f74e710.tar.gz nextcloud-server-df6fc6cc70ceb06e0b9d8a7ff9ce4cbf2f74e710.zip |
Add the user's cloud id to the vCard
Diffstat (limited to 'lib/public')
-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 f6caef2ba1b..67e2b107e0b 100644 --- a/lib/public/iuser.php +++ b/lib/public/iuser.php @@ -161,4 +161,12 @@ interface IUser { * @since 9.0.0 */ public function getAvatarImage($size); + + /** + * get the federation cloud id + * + * @return string + * @since 9.0.0 + */ + public function getCloudId(); } |