summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-06-11 09:17:28 +0200
committerGitHub <noreply@github.com>2018-06-11 09:17:28 +0200
commit51d867c5d7580e0eee22eed1bbe65647124b90f1 (patch)
tree9786a4ca4f68bf7e8c839a852ef6a9c2c39cc325 /apps
parente13f90ebe205d0da5efe9c0c7d95326be8dda7db (diff)
parent7ea41a1461d1465bb46622e26566eb3cc6e332c8 (diff)
downloadnextcloud-server-51d867c5d7580e0eee22eed1bbe65647124b90f1.tar.gz
nextcloud-server-51d867c5d7580e0eee22eed1bbe65647124b90f1.zip
Merge pull request #9798 from nextcloud/bugfix/noid/enable_caldav_for_public_calendars
enable caldav for webdav subtree public-calendars
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/Server.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Server.php b/apps/dav/lib/Server.php
index b9f411ae7ec..a401fb57045 100644
--- a/apps/dav/lib/Server.php
+++ b/apps/dav/lib/Server.php
@@ -138,7 +138,7 @@ class Server {
$this->server->addPlugin($acl);
// calendar plugins
- if ($this->requestIsForSubtree(['calendars', 'principals'])) {
+ if ($this->requestIsForSubtree(['calendars', 'public-calendars', 'principals'])) {
$this->server->addPlugin(new \OCA\DAV\CalDAV\Plugin());
$this->server->addPlugin(new \Sabre\CalDAV\ICSExportPlugin());
$this->server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin());