diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-24 22:44:19 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-24 22:44:19 +0100 |
commit | ab0db65b23fb381a446d5cbb0fe101c76a07cb19 (patch) | |
tree | cfb95c81341dc9bac8467f3e62ead5f0418cf081 /apps/dav/lib/connector | |
parent | b966fc2233b387f8034cafc61a920282e1f6a3b1 (diff) | |
parent | 9ee1f506f210864c57f559d46f1bd4790f5c6f9e (diff) | |
download | nextcloud-server-ab0db65b23fb381a446d5cbb0fe101c76a07cb19.tar.gz nextcloud-server-ab0db65b23fb381a446d5cbb0fe101c76a07cb19.zip |
Merge pull request #23549 from owncloud/dav-sharetypes-remote
Return remote shares in oc:share-types Webdav property
Diffstat (limited to 'apps/dav/lib/connector')
-rw-r--r-- | apps/dav/lib/connector/sabre/sharesplugin.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/lib/connector/sabre/sharesplugin.php b/apps/dav/lib/connector/sabre/sharesplugin.php index f75c1378718..c76068969e9 100644 --- a/apps/dav/lib/connector/sabre/sharesplugin.php +++ b/apps/dav/lib/connector/sabre/sharesplugin.php @@ -116,7 +116,8 @@ class SharesPlugin extends \Sabre\DAV\ServerPlugin { $requestedShareTypes = [ \OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, - \OCP\Share::SHARE_TYPE_LINK + \OCP\Share::SHARE_TYPE_LINK, + \OCP\Share::SHARE_TYPE_REMOTE ]; foreach ($requestedShareTypes as $requestedShareType) { // one of each type is enough to find out about the types |