]> source.dussan.org Git - nextcloud-server.git/commit
Remove all legacy event dispatchers from CalDAV & CardDAV backends
authorThomas Citharel <tcit@tcit.fr>
Thu, 12 May 2022 15:29:57 +0000 (17:29 +0200)
committerThomas Citharel <tcit@tcit.fr>
Tue, 17 May 2022 13:09:46 +0000 (15:09 +0200)
commit4bb31c021e02d1076b5edc13d352e9c058e7c253
tree9465a0b4e640623c3418aea6e54df7c8144caaf7
parent07c9bf1adff8a2d10ff774da32c2ddd54fd01923
Remove all legacy event dispatchers from CalDAV & CardDAV backends

Move them to proper EventListeners and test them

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
22 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/AppInfo/Application.php
apps/dav/lib/CalDAV/Activity/Backend.php
apps/dav/lib/CalDAV/CalDavBackend.php
apps/dav/lib/CardDAV/CardDavBackend.php
apps/dav/lib/Command/CreateCalendar.php
apps/dav/lib/Listener/BirthdayListener.php [new file with mode: 0644]
apps/dav/lib/Listener/CalendarPublicationListener.php [new file with mode: 0644]
apps/dav/lib/Listener/CalendarShareUpdateListener.php [new file with mode: 0644]
apps/dav/lib/Listener/ClearPhotoCacheListener.php [new file with mode: 0644]
apps/dav/lib/Listener/SubscriptionListener.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/Listener/CalendarPublicationListenerTest.php [new file with mode: 0644]
apps/dav/tests/unit/CalDAV/Listener/CalendarShareUpdateListenerTest.php [new file with mode: 0644]
apps/dav/tests/unit/CalDAV/Listener/SubscriptionListenerTest.php [new file with mode: 0644]
apps/dav/tests/unit/CalDAV/PublicCalendarRootTest.php
apps/dav/tests/unit/CardDAV/CardDavBackendTest.php