add title and color to birthday calendar

This commit is contained in:
Georg Ehrke 2016-03-10 13:02:42 +01:00 committed by Thomas Müller
parent 51072f742e
commit 856ca641d1
1 changed files with 5 additions and 0 deletions

View File

@ -91,6 +91,11 @@ class BirthdayService {
* @throws \Sabre\DAV\Exception\BadRequest
*/
public function ensureCalendarExists($principal, $id, $properties) {
$properties = array_merge([
'{DAV:}displayname' => 'Contact birthdays',
'{http://apple.com/ns/ical/}calendar-color' => '#FFFFCA',
], $properties);
$book = $this->calDavBackEnd->getCalendarByUri($principal, $id);
if (!is_null($book)) {
return $book;