diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-02-02 10:38:22 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-02-03 12:16:57 +0100 |
commit | 689e2a0838546e1528e8a9f9b9b492dbe3a07df4 (patch) | |
tree | e9813e49036dd8fb92272bd4fd44c9b736bf2704 /apps/dav/lib/AppInfo/Application.php | |
parent | 0da1999a3b2d33acc40fb1815b9b22f728cb2cc0 (diff) | |
download | nextcloud-server-689e2a0838546e1528e8a9f9b9b492dbe3a07df4.tar.gz nextcloud-server-689e2a0838546e1528e8a9f9b9b492dbe3a07df4.zip |
Emit an interaction event for calendar event user attendees
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/dav/lib/AppInfo/Application.php')
-rw-r--r-- | apps/dav/lib/AppInfo/Application.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/dav/lib/AppInfo/Application.php b/apps/dav/lib/AppInfo/Application.php index 09081403140..f1bf77c3285 100644 --- a/apps/dav/lib/AppInfo/Application.php +++ b/apps/dav/lib/AppInfo/Application.php @@ -53,6 +53,8 @@ use OCA\DAV\CardDAV\CardDavBackend; use OCA\DAV\CardDAV\ContactsManager; use OCA\DAV\CardDAV\PhotoCache; use OCA\DAV\CardDAV\SyncService; +use OCA\DAV\Events\CalendarObjectCreatedEvent; +use OCA\DAV\Events\CalendarObjectUpdatedEvent; use OCA\DAV\Events\CalendarShareUpdatedEvent; use OCA\DAV\HookManager; use OCA\DAV\Listener\CalendarContactInteractionListener; @@ -112,6 +114,8 @@ class Application extends App implements IBootstrap { /** * Register event listeners */ + $context->registerEventListener(CalendarObjectCreatedEvent::class, CalendarContactInteractionListener::class); + $context->registerEventListener(CalendarObjectUpdatedEvent::class, CalendarContactInteractionListener::class); $context->registerEventListener(CalendarShareUpdatedEvent::class, CalendarContactInteractionListener::class); } |