mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 08:16:43 -04:00
chore: rename Index.php to ListWebhooks.php
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
cccda66c7d
commit
35d5d90dc0
4 changed files with 4 additions and 4 deletions
|
|
@ -24,7 +24,7 @@
|
|||
</dependencies>
|
||||
|
||||
<commands>
|
||||
<command>OCA\Webhooks\Command\Index</command>
|
||||
<command>OCA\Webhooks\Command\ListWebhooks</command>
|
||||
</commands>
|
||||
|
||||
<settings>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ return array(
|
|||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
'OCA\\Webhooks\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php',
|
||||
'OCA\\Webhooks\\BackgroundJobs\\WebhookCall' => $baseDir . '/../lib/BackgroundJobs/WebhookCall.php',
|
||||
'OCA\\Webhooks\\Command\\Index' => $baseDir . '/../lib/Command/Index.php',
|
||||
'OCA\\Webhooks\\Command\\ListWebhooks' => $baseDir . '/../lib/Command/ListWebhooks.php',
|
||||
'OCA\\Webhooks\\Controller\\WebhooksController' => $baseDir . '/../lib/Controller/WebhooksController.php',
|
||||
'OCA\\Webhooks\\Db\\AuthMethod' => $baseDir . '/../lib/Db/AuthMethod.php',
|
||||
'OCA\\Webhooks\\Db\\WebhookListener' => $baseDir . '/../lib/Db/WebhookListener.php',
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ class ComposerStaticInitWebhooks
|
|||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
'OCA\\Webhooks\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
|
||||
'OCA\\Webhooks\\BackgroundJobs\\WebhookCall' => __DIR__ . '/..' . '/../lib/BackgroundJobs/WebhookCall.php',
|
||||
'OCA\\Webhooks\\Command\\Index' => __DIR__ . '/..' . '/../lib/Command/Index.php',
|
||||
'OCA\\Webhooks\\Command\\ListWebhooks' => __DIR__ . '/..' . '/../lib/Command/ListWebhooks.php',
|
||||
'OCA\\Webhooks\\Controller\\WebhooksController' => __DIR__ . '/..' . '/../lib/Controller/WebhooksController.php',
|
||||
'OCA\\Webhooks\\Db\\AuthMethod' => __DIR__ . '/..' . '/../lib/Db/AuthMethod.php',
|
||||
'OCA\\Webhooks\\Db\\WebhookListener' => __DIR__ . '/..' . '/../lib/Db/WebhookListener.php',
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ use OCA\Webhooks\Db\WebhookListenerMapper;
|
|||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class Index extends Base {
|
||||
class ListWebhooks extends Base {
|
||||
public function __construct(
|
||||
private WebhookListenerMapper $mapper,
|
||||
) {
|
||||
Loading…
Reference in a new issue