Added PropertyStorage and Scheduling plugin

This commit is contained in:
Evert Pot 2016-03-12 19:59:02 -05:00
parent 59fdddcee3
commit b9c39cda15
2 changed files with 7 additions and 0 deletions

View file

@ -7,6 +7,8 @@ ChangeLog
* #472: If you were using Sqlite, Cal- CardDAV clients might have missed
updates from the server.
* #482 / #490: Fix installation issue if Sqlite is not enabled. (@fabianwolf)
* #491: Added CalDAV Scheduling plugin.
* Added Property Storage plugin.
0.3.5 (2016-02-24)

View file

@ -157,9 +157,14 @@ class Server {
$this->server->addPlugin(new \Sabre\DAVACL\Plugin());
$this->server->addPlugin(new \Sabre\DAV\Browser\Plugin());
$this->server->addPlugin(new \Sabre\DAV\PropertyStorage\Plugin(
new \Sabre\DAV\PropertyStorage\Backend\PDO($this->pdo)
));
if ($this->enableCalDAV) {
$this->server->addPlugin(new \Sabre\CalDAV\Plugin());
$this->server->addPlugin(new \Sabre\CalDAV\ICSExportPlugin());
$this->server->addPlugin(new \Sabre\CalDAV\Schedule\Plugin());
}
if ($this->enableCardDAV) {
$this->server->addPlugin(new \Sabre\CardDAV\Plugin());