Channel list working, url generation, just need posting working now - Update dependency to Nextcloud 33 and add `spreed` dependency - Change webhook route from `/webhook` to `/bot-webhook` - Add `NavigationProvider` to add app to admin settings menu - Refactor `TalkService` to query Talk DB directly for room listing (public channels) - Update `postToRoom` to use Talk Chat API with Basic Auth for `talk-bot` user - Add debug helper methods to `TalkService` for room debugging - Enhance `debug` endpoint with detailed system and Talk configuration info - Update admin settings UI with "Default Sender Name" field and improved room selection - Add localization strings to admin settings - Update documentation (`INSTALL.md`, `README.md`) for new route and bot admin requirement - Improve `getBaseUrl` logic to prioritize `trusted_domains` for Docker compatibility
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?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>ncdiscordhook</id>
|
|
<name>NCdiscordhook</name>
|
|
<summary>Discord webhook bridge for Nextcloud Talk with image support</summary>
|
|
<description>Accepts Discord webhook-style JSON payloads and posts them into Nextcloud Talk rooms, preserving image attachments. Each room gets its own webhook URL with an auth token for security.</description>
|
|
<version>1.0.0</version>
|
|
<licence>AGPL-3.0-or-later</licence>
|
|
<author homepage="https://github.com/Mr-Newlove/nc_bot_webhooks/kyle">Kyle</author>
|
|
<namespace>NCdiscordhook</namespace>
|
|
<category>integration</category>
|
|
|
|
<dependencies>
|
|
<nextcloud min-version="33" max-version="33"/>
|
|
<app>spreed</app>
|
|
</dependencies>
|
|
|
|
<background-jobs>
|
|
OCA\NCdiscordhook\Cron\ImageCleanup
|
|
</background-jobs>
|
|
|
|
<settings>
|
|
<admin>OCA\NCdiscordhook\Settings\Admin</admin>
|
|
</settings>
|
|
|
|
<bugs>https://github.com/Mr-Newlove/nc_bot_webhooks/issues</bugs>
|
|
</info>
|