]> source.dussan.org Git - nextcloud-server.git/commit
feat: Add webhooks application
authorCôme Chilliet <come.chilliet@nextcloud.com>
Tue, 28 May 2024 08:07:04 +0000 (10:07 +0200)
committerCôme Chilliet <91878298+come-nc@users.noreply.github.com>
Tue, 11 Jun 2024 12:10:29 +0000 (14:10 +0200)
commitaa974a4322170ae3b489607967801ba84ccc63b4
tree05d171fba618f05976abbc0ee663b4f73663189a
parentd835d23e3a73bb09f46096a93269bb34b51fbb90
feat: Add webhooks application

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
29 files changed:
.gitignore
apps/webhooks/appinfo/info.xml [new file with mode: 0644]
apps/webhooks/composer/autoload.php [new file with mode: 0644]
apps/webhooks/composer/composer.json [new file with mode: 0644]
apps/webhooks/composer/composer.lock [new file with mode: 0644]
apps/webhooks/composer/composer/ClassLoader.php [new file with mode: 0644]
apps/webhooks/composer/composer/InstalledVersions.php [new file with mode: 0644]
apps/webhooks/composer/composer/LICENSE [new file with mode: 0644]
apps/webhooks/composer/composer/autoload_classmap.php [new file with mode: 0644]
apps/webhooks/composer/composer/autoload_namespaces.php [new file with mode: 0644]
apps/webhooks/composer/composer/autoload_psr4.php [new file with mode: 0644]
apps/webhooks/composer/composer/autoload_real.php [new file with mode: 0644]
apps/webhooks/composer/composer/autoload_static.php [new file with mode: 0644]
apps/webhooks/composer/composer/installed.json [new file with mode: 0644]
apps/webhooks/composer/composer/installed.php [new file with mode: 0644]
apps/webhooks/img/app-dark.svg [new file with mode: 0644]
apps/webhooks/img/app.svg [new file with mode: 0644]
apps/webhooks/lib/AppInfo/Application.php [new file with mode: 0644]
apps/webhooks/lib/BackgroundJobs/WebhookCall.php [new file with mode: 0644]
apps/webhooks/lib/Command/Index.php [new file with mode: 0644]
apps/webhooks/lib/Controller/WebhooksController.php [new file with mode: 0644]
apps/webhooks/lib/Db/WebhookListener.php [new file with mode: 0644]
apps/webhooks/lib/Db/WebhookListenerMapper.php [new file with mode: 0644]
apps/webhooks/lib/Listener/WebhooksEventListener.php [new file with mode: 0644]
apps/webhooks/lib/Migration/Version1000Date20240527153425.php [new file with mode: 0755]
apps/webhooks/lib/ResponseDefinitions.php [new file with mode: 0644]
apps/webhooks/openapi.json [new file with mode: 0644]
apps/webhooks/tests/Db/WebhookListenerMapperTest.php [new file with mode: 0644]
tests/enable_all.php