diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-06-13 14:46:23 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2018-07-02 11:29:31 +0200 |
commit | 8d4da30bf59ca12a81f13ea93b7fdd6c84cb1c2b (patch) | |
tree | f75a4963116fad8d33513f1a84f033e38cc9b3d4 /lib/public | |
parent | e251b34a8c5ba0c06ff8eecf73374895180f7d03 (diff) | |
download | nextcloud-server-8d4da30bf59ca12a81f13ea93b7fdd6c84cb1c2b.tar.gz nextcloud-server-8d4da30bf59ca12a81f13ea93b7fdd6c84cb1c2b.zip |
add support for different share types
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Federation/ICloudFederationProvider.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/Federation/ICloudFederationProvider.php b/lib/public/Federation/ICloudFederationProvider.php index 49a2b4bc777..b3574535cb0 100644 --- a/lib/public/Federation/ICloudFederationProvider.php +++ b/lib/public/Federation/ICloudFederationProvider.php @@ -77,4 +77,13 @@ interface ICloudFederationProvider { */ public function notificationReceived($notificationType, $providerId, array $notification); + /** + * get the supported share types, e.g. "user", "group", etc. + * + * @return array + * + * @since 14.0.0 + */ + public function getSupportedShareTypes(); + } |