refactor: rename app from ncdiscordhook to nc_bot_webhooks
- Update namespace from OCA\NCdiscordhook to OCA\Ncbotwebhooks - Update app ID, name, and namespace in appinfo/info.xml - Update composer.json and autoload files - Update CLI command names from ncdiscordhook:* to nc_bot_webhooks:* - Update image directory name to nc_bot_webhooks-images - Update documentation in README.md and INSTALL.md - Update JavaScript APP_ID and navigation provider paths - Update admin settings and controller app references
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return [
|
||||
'jobs' => [
|
||||
\OCA\NCdiscordhook\Cron\ImageCleanup::class,
|
||||
\OCA\Ncbotwebhooks\Cron\ImageCleanup::class,
|
||||
],
|
||||
];
|
||||
|
||||
+6
-6
@@ -1,14 +1,14 @@
|
||||
<?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>
|
||||
<id>nc_bot_webhooks</id>
|
||||
<name>NCbotwebhooks</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.1.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>
|
||||
<namespace>Ncbotwebhooks</namespace>
|
||||
<category>integration</category>
|
||||
|
||||
<dependencies>
|
||||
@@ -17,15 +17,15 @@
|
||||
</dependencies>
|
||||
|
||||
<background-jobs>
|
||||
OCA\NCdiscordhook\Cron\ImageCleanup
|
||||
OCA\Ncbotwebhooks\Cron\ImageCleanup
|
||||
</background-jobs>
|
||||
|
||||
<settings>
|
||||
<admin>OCA\NCdiscordhook\Settings\Admin</admin>
|
||||
<admin>OCA\Ncbotwebhooks\Settings\Admin</admin>
|
||||
</settings>
|
||||
|
||||
<commands>
|
||||
<command>OCA\NCdiscordhook\Command\DebugToggle</command>
|
||||
<command>OCA\Ncbotwebhooks\Command\DebugToggle</command>
|
||||
</commands>
|
||||
|
||||
<bugs>https://github.com/Mr-Newlove/nc_bot_webhooks/issues</bugs>
|
||||
|
||||
Reference in New Issue
Block a user