From 064edd1ce2248c731a62657d908cb070c6275e62 Mon Sep 17 00:00:00 2001 From: Anna Larch Date: Fri, 28 Oct 2022 14:11:41 +0200 Subject: [PATCH] Add documentation for iMIP API Signed-off-by: Anna Larch --- developer_manual/digging_deeper/groupware/calendar.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/developer_manual/digging_deeper/groupware/calendar.rst b/developer_manual/digging_deeper/groupware/calendar.rst index 91467c837..b0caba817 100644 --- a/developer_manual/digging_deeper/groupware/calendar.rst +++ b/developer_manual/digging_deeper/groupware/calendar.rst @@ -159,8 +159,14 @@ Calendars that only return `ICalendar` are implicitly read-only. If your app's c // Write data to your calendar representation } + public function handleIMipMessage(string $name, string $calendarData): void { + // Validation and write to your calendar representation + } + } +You must implement the ``handleIMipMessage`` method if your calendar is writable. You can find more infomation on the conditions that have to be fulfilled for iMIP data to be processed in the `RFC `_ + Resources ---------