Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-10-11 20:47:21 +0300
committerGitHub <noreply@github.com>2016-10-11 20:47:21 +0300
commit8991f5ef407eb9933ff8aacf2abe5c733e143210 (patch)
treefdfd65113602c5e0122955efec4cabf6f5244340 /apps
parent4047fb5f66c178c4e03e23fa1eaacc37313890bc (diff)
parent3a4f8b6bb13abbc9067f97d11340652c88d1a17f (diff)
Merge pull request #26327 from owncloud/stable9.1-fa711834a18eaae6706a49885d0884baf8e3494b
[stable9.1] fix issue #23600 - mail invites through v1 webdav (#26188)
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/appinfo/v1/caldav.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dav/appinfo/v1/caldav.php b/apps/dav/appinfo/v1/caldav.php
index 50348a60202..f4025d169a5 100644
--- a/apps/dav/appinfo/v1/caldav.php
+++ b/apps/dav/appinfo/v1/caldav.php
@@ -75,6 +75,8 @@ if ($debugging) {
}
$server->addPlugin(new \Sabre\CalDAV\ICSExportPlugin());
+$server->addPlugin(new \Sabre\CalDAV\Schedule\Plugin());
+$server->addPlugin(new OCA\DAV\CalDAV\Schedule\IMipPlugin( \OC::$server->getMailer(), \OC::$server->getLogger()));
$server->addPlugin(new ExceptionLoggerPlugin('caldav', \OC::$server->getLogger()));
// And off we go!