mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
chore: update webhook_listeners description
Signed-off-by: Josh Richards <josh.t.richards@gmail.com>
This commit is contained in:
parent
464d12e149
commit
763e0901be
2 changed files with 49 additions and 28 deletions
|
|
@ -3,36 +3,57 @@
|
|||
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
||||
- SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
-->
|
||||
<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.4.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Côme Chilliet</author>
|
||||
<namespace>WebhookListeners</namespace>
|
||||
<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>
|
||||
|
||||
<types>
|
||||
<filesystem/>
|
||||
</types>
|
||||
<summary>Send notifications to external services whenever something important happens, like when files are changed or updated.</summary>
|
||||
<description>
|
||||
<![CDATA[
|
||||
Set up webhooks that automatically notify external services whenever certain events - like file changes - occur
|
||||
within Nextcloud. By configuring these webhooks, administrators can specify which actions in their Nextcloud instance
|
||||
should trigger notifications and where those notifications should be sent, enabling seamless integration with other platforms
|
||||
and automating workflows.
|
||||
|
||||
<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>
|
||||
The app works by monitoring Nextcloud’s event system and dispatching HTTP requests (webhooks) containing relevant event
|
||||
data to the specified endpoints whenever a configured event takes place. This approach makes it easy to connect Nextcloud
|
||||
with external tools, allowing for real-time interactions without needing to manually check for updates or changes.
|
||||
|
||||
<dependencies>
|
||||
<nextcloud min-version="33" max-version="33"/>
|
||||
</dependencies>
|
||||
Administrators can configure webhook listeners via the app's OCS API. The app also provides a command-line tool to list
|
||||
currently configured webhooks. There are no Web UI settings.
|
||||
]]>
|
||||
</description>
|
||||
|
||||
<commands>
|
||||
<command>OCA\WebhookListeners\Command\ListWebhooks</command>
|
||||
</commands>
|
||||
<version>1.4.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Côme Chilliet</author>
|
||||
<namespace>WebhookListeners</namespace>
|
||||
<types>
|
||||
<filesystem/>
|
||||
</types>
|
||||
|
||||
<settings>
|
||||
<admin-delegation>OCA\WebhookListeners\Settings\Admin</admin-delegation>
|
||||
<admin-delegation-section>OCA\WebhookListeners\Settings\AdminSection</admin-delegation-section>
|
||||
</settings>
|
||||
<documentation>
|
||||
<admin>https://docs.nextcloud.com/server/latest/admin_manual/webhook_listeners/index.html</admin>
|
||||
<developer>https://docs.nextcloud.com/server/latest/developer_manual/_static/openapi.html#/operations/webhook_listeners-webhooks-index</developer>
|
||||
</documentation>
|
||||
|
||||
<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="33" max-version="33"/>
|
||||
</dependencies>
|
||||
|
||||
<commands>
|
||||
<command>OCA\WebhookListeners\Command\ListWebhooks</command>
|
||||
</commands>
|
||||
|
||||
<settings>
|
||||
<admin-delegation>OCA\WebhookListeners\Settings\Admin</admin-delegation>
|
||||
<admin-delegation-section>OCA\WebhookListeners\Settings\AdminSection</admin-delegation-section>
|
||||
</settings>
|
||||
</info>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"info": {
|
||||
"title": "webhook_listeners",
|
||||
"version": "0.0.1",
|
||||
"description": "Nextcloud webhook support",
|
||||
"description": "Send notifications to external services whenever something important happens, like when files are changed or updated.",
|
||||
"license": {
|
||||
"name": "agpl"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue