diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-07-08 16:58:17 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-07-08 16:58:17 +0200 |
commit | 3424785db0b9396a950083d90dc6d5cf3133b512 (patch) | |
tree | 9f1b178c9b3186e38de3ae7d5284ca4e948ab89d /apps/calendar/appinfo/remote.php | |
parent | f5c620006ebdaf65ced253f88bb85fc1ca671e3b (diff) | |
download | nextcloud-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.php | 2 |
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(); |