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:
authorClaudemir Todo Bom <claudemir@todobom.com>2016-09-28 19:31:16 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-10-10 22:45:58 +0300
commit3a4f8b6bb13abbc9067f97d11340652c88d1a17f (patch)
treef39a398700cb309305299d26cde8c9ff0791d2f3 /apps
parent94f7f3824b7903f370c8975d508aadd726d13cc5 (diff)
[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!