summaryrefslogtreecommitdiffstats
path: root/apps/calendar/appinfo/remote.php
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-07-08 16:58:17 +0200
committerThomas Tanghus <thomas@tanghus.net>2012-07-08 16:58:17 +0200
commit3424785db0b9396a950083d90dc6d5cf3133b512 (patch)
tree9f1b178c9b3186e38de3ae7d5284ca4e948ab89d /apps/calendar/appinfo/remote.php
parentf5c620006ebdaf65ced253f88bb85fc1ca671e3b (diff)
downloadnextcloud-server-3424785db0b9396a950083d90dc6d5cf3133b512.tar.gz
nextcloud-server-3424785db0b9396a950083d90dc6d5cf3133b512.zip
Implemented Sabre iCalendar Export Plugin.
Diffstat (limited to 'apps/calendar/appinfo/remote.php')
-rw-r--r--apps/calendar/appinfo/remote.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/appinfo/remote.php b/apps/calendar/appinfo/remote.php
index 7ab546245f6..e8f9e80c7a8 100644
--- a/apps/calendar/appinfo/remote.php
+++ b/apps/calendar/appinfo/remote.php
@@ -34,6 +34,6 @@ $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud'));
$server->addPlugin(new Sabre_CalDAV_Plugin());
$server->addPlugin(new Sabre_DAVACL_Plugin());
$server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload
-
+$server->addPlugin(new Sabre_CalDAV_ICSExportPlugin());
// And off we go!
$server->exec();