]> source.dussan.org Git - nextcloud-server.git/commit
Add Typed Events for CalDAV- and CardDAV-related Events
authorGeorg Ehrke <developer@georgehrke.com>
Tue, 28 Jul 2020 07:35:51 +0000 (09:35 +0200)
committerMorris Jobke <hey@morrisjobke.de>
Tue, 18 Aug 2020 19:40:57 +0000 (21:40 +0200)
commit67f1ef46583e5135cfb6d0e5cbfbe441be0803a6
treec2c4fa3dba8437dd607513b6bc204944055d520a
parent5ced155032c51a90b8a9ffb6b1159a34c29194ef
Add Typed Events for CalDAV- and CardDAV-related Events

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
34 files changed:
apps/dav/appinfo/v1/caldav.php
apps/dav/appinfo/v1/carddav.php
apps/dav/composer/composer/autoload_classmap.php
apps/dav/composer/composer/autoload_static.php
apps/dav/lib/CalDAV/CalDavBackend.php
apps/dav/lib/CardDAV/CardDavBackend.php
apps/dav/lib/Command/CreateCalendar.php
apps/dav/lib/Events/AddressBookCreatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/AddressBookDeletedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/AddressBookShareUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/AddressBookUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CachedCalendarObjectCreatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CachedCalendarObjectDeletedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CachedCalendarObjectUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarCreatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarDeletedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarObjectCreatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarObjectDeletedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarObjectUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarPublishedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarShareUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarUnpublishedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CalendarUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CardCreatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CardDeletedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/CardUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/SubscriptionCreatedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/SubscriptionDeletedEvent.php [new file with mode: 0644]
apps/dav/lib/Events/SubscriptionUpdatedEvent.php [new file with mode: 0644]
apps/dav/lib/RootCollection.php
apps/dav/tests/unit/CalDAV/AbstractCalDavBackend.php
apps/dav/tests/unit/CalDAV/CalDavBackendTest.php
apps/dav/tests/unit/CalDAV/PublicCalendarRootTest.php
apps/dav/tests/unit/CardDAV/CardDavBackendTest.php