mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #21702 from nextcloud/backport/18895/stable18
[stable18] Changes the Birthday calendar color to slightly brighter one
This commit is contained in:
commit
5aa6134d6c
2 changed files with 2 additions and 2 deletions
|
|
@ -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',
|
||||
]);
|
||||
|
||||
|
|
|
|||
|
|
@ -335,7 +335,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 a new issue