diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-07-11 21:44:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-11 21:44:48 +0200 |
commit | 3036b1d03d93267ff7fdda7a1e0682173aec2b98 (patch) | |
tree | 8aeaf29d54d3f508071885b5791b2af96c04f2f0 /lib/public | |
parent | a89f9a238f873aab524ba985ed5f3a342ff877f6 (diff) | |
parent | 412f6a6eccd7b4b955d63922150dbe2104cd269d (diff) | |
download | nextcloud-server-3036b1d03d93267ff7fdda7a1e0682173aec2b98.tar.gz nextcloud-server-3036b1d03d93267ff7fdda7a1e0682173aec2b98.zip |
Merge pull request #9895 from nextcloud/fed-group-shares
implement federated group sharing
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Share/IManager.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php index d4fc3e14749..302be523327 100644 --- a/lib/public/Share/IManager.php +++ b/lib/public/Share/IManager.php @@ -370,6 +370,14 @@ interface IManager { public function outgoingServer2ServerSharesAllowed(); /** + * Check if outgoing server2server shares are allowed + * @return bool + * @since 14.0.0 + */ + public function outgoingServer2ServerGroupSharesAllowed(); + + + /** * Check if a given share provider exists * @param int $shareType * @return bool |