aboutsummaryrefslogtreecommitdiffstats
path: root/apps/webhook_listeners/appinfo
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2024-06-10 17:35:07 +0200
committerCôme Chilliet <91878298+come-nc@users.noreply.github.com>2024-06-11 14:10:29 +0200
commit19bc3ed1e3f52a9d9cd0a540e7e754a2fa16eb54 (patch)
treed067d7bb3ac0c31f149ce69b5c11b1266617878c /apps/webhook_listeners/appinfo
parent9449f6438d1ef3127f57601ebdd9d5d24fa6d16e (diff)
downloadnextcloud-server-19bc3ed1e3f52a9d9cd0a540e7e754a2fa16eb54.tar.gz
nextcloud-server-19bc3ed1e3f52a9d9cd0a540e7e754a2fa16eb54.zip
chore(webhooks): Rename webhooks application to webhook_listeners
There is already a webhooks application in the appstore Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/webhook_listeners/appinfo')
-rw-r--r--apps/webhook_listeners/appinfo/info.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/webhook_listeners/appinfo/info.xml b/apps/webhook_listeners/appinfo/info.xml
new file mode 100644
index 00000000000..a8cec901ec3
--- /dev/null
+++ b/apps/webhook_listeners/appinfo/info.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
+ <id>webhook_listeners</id>
+ <name>Nextcloud webhook support</name>
+ <summary>Nextcloud webhook support</summary>
+ <description>Nextcloud webhook support</description>
+ <version>1.0.0-dev</version>
+ <licence>agpl</licence>
+ <author>Côme Chilliet</author>
+ <namespace>WebhookListeners</namespace>
+
+ <types>
+ <filesystem/>
+ </types>
+
+ <category>customization</category>
+ <website>https://github.com/nextcloud/server</website>
+ <bugs>https://github.com/nextcloud/server/issues</bugs>
+ <repository>https://github.com/nextcloud/server.git</repository>
+
+ <dependencies>
+ <nextcloud min-version="30" max-version="30"/>
+ </dependencies>
+
+ <commands>
+ <command>OCA\WebhookListeners\Command\ListWebhooks</command>
+ </commands>
+
+ <settings>
+ <admin>OCA\WebhookListeners\Settings\Admin</admin>
+ </settings>
+</info>