Merge pull request #21703 from nextcloud/backport/18895/stable19
[stable19] Changes the Birthday calendar color to slightly brighter one
This commit is contained in:
commit
341757945f
|
@ -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',
|
||||
]);
|
||||
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue