diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-02-04 11:13:06 +0100 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2016-02-08 11:30:48 +0100 |
commit | a506f9ca3f0d49a346e9950b078a273f30fbf0c0 (patch) | |
tree | 62c7035119cf3176156145300068dccac5f24781 /lib/public | |
parent | bec1de8a385991f8ecc6837c672ea43a0e3dc8cf (diff) | |
download | nextcloud-server-a506f9ca3f0d49a346e9950b078a273f30fbf0c0.tar.gz nextcloud-server-a506f9ca3f0d49a346e9950b078a273f30fbf0c0.zip |
Respect not allowing outgoing shares
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/share/imanager.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/public/share/imanager.php b/lib/public/share/imanager.php index 4d79f97c31a..f926104dde0 100644 --- a/lib/public/share/imanager.php +++ b/lib/public/share/imanager.php @@ -229,4 +229,11 @@ interface IManager { */ public function sharingDisabledForUser($userId); + /** + * Check if outgoing server2server shares are allowed + * @return bool + * @since 9.0.0 + */ + public function outgoingServer2ServerSharesAllowed(); + } |