From da522dc3d50b58b19f89a3f409a62c4a959e1d4f Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 14 Jan 2020 16:48:48 +0100 Subject: [PATCH 1/2] Changes the Birthday calendar color to slightly brighter one Signed-off-by: Georg Ehrke --- apps/dav/lib/CalDAV/BirthdayService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/CalDAV/BirthdayService.php b/apps/dav/lib/CalDAV/BirthdayService.php index b492d4219c..e64e886a01 100644 --- a/apps/dav/lib/CalDAV/BirthdayService.php +++ b/apps/dav/lib/CalDAV/BirthdayService.php @@ -165,7 +165,7 @@ class BirthdayService { } $this->calDavBackEnd->createCalendar($principal, self::BIRTHDAY_CALENDAR_URI, [ '{DAV:}displayname' => 'Contact birthdays', - '{http://apple.com/ns/ical/}calendar-color' => '#FFFFCA', + '{http://apple.com/ns/ical/}calendar-color' => '#E9D859', 'components' => 'VEVENT', ]); From 2b72b5cea5ba7d9376d158ffafc91c98131505b1 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 6 Jul 2020 13:32:42 +0200 Subject: [PATCH 2/2] Fix unit tests from #18895 Signed-off-by: Morris Jobke --- apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php b/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php index e6ba0f5ef0..8885637aee 100644 --- a/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php +++ b/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php @@ -343,7 +343,7 @@ class BirthdayServiceTest extends TestCase { ->method('createCalendar') ->with('principal001', 'contact_birthdays', [ '{DAV:}displayname' => 'Contact birthdays', - '{http://apple.com/ns/ical/}calendar-color' => '#FFFFCA', + '{http://apple.com/ns/ical/}calendar-color' => '#E9D859', 'components' => 'VEVENT', ]); $this->service->ensureCalendarExists('principal001');