add title and color to birthday calendar

remotes/origin/files-consistentpermsformountpoint
Georg Ehrke 10 years ago committed by Thomas Müller
parent 51072f742e
commit 856ca641d1
  1. 5
      apps/dav/lib/caldav/birthdayservice.php

@ -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;

Loading…
Cancel
Save