Event invitation improvements (#3705)

This commit is contained in:
Yurii Kuznietsov
2026-06-25 13:53:43 +03:00
committed by GitHub
parent 83953ec8f6
commit 515c0dd13a
11 changed files with 307 additions and 71 deletions

View File

@@ -47,7 +47,7 @@ class IcsTest extends TestCase
'description' => 'Test.',
'stamp' => strtotime('2025-01-01 09:00:00'),
'attendees' => [
['att1@test.com', 'Att 1'],
['att1@test.com', 'Att 1', 'TENTATIVE'],
['att2@test.com', 'Att 2'],
],
]);
@@ -67,7 +67,7 @@ class IcsTest extends TestCase
"SEQUENCE:0\r\n".
"DTSTAMP:20250101T090000Z\r\n".
"STATUS:CONFIRMED\r\n".
"ATTENDEE;CN=Att 1:MAILTO:att1@test.com\r\n".
"ATTENDEE;PARTSTAT=TENTATIVE;CN=Att 1:MAILTO:att1@test.com\r\n".
"ATTENDEE;CN=Att 2:MAILTO:att2@test.com\r\n".
"END:VEVENT\r\n".
"END:VCALENDAR";