diff --git a/module/Rest/config/dependencies.config.php b/module/Rest/config/dependencies.config.php index cb946f85..0193e2b0 100644 --- a/module/Rest/config/dependencies.config.php +++ b/module/Rest/config/dependencies.config.php @@ -26,7 +26,7 @@ return [ Action\ShortCode\ResolveUrlAction::class => ConfigAbstractFactory::class, Action\GetVisitsAction::class => ConfigAbstractFactory::class, Action\ShortCode\ListShortCodesAction::class => ConfigAbstractFactory::class, - Action\EditShortCodeTagsAction::class => ConfigAbstractFactory::class, + Action\ShortCode\EditShortCodeTagsAction::class => ConfigAbstractFactory::class, Action\Tag\ListTagsAction::class => ConfigAbstractFactory::class, Action\Tag\DeleteTagsAction::class => ConfigAbstractFactory::class, Action\Tag\CreateTagsAction::class => ConfigAbstractFactory::class, @@ -61,7 +61,7 @@ return [ Action\ShortCode\ResolveUrlAction::class => [Service\UrlShortener::class, 'translator'], Action\GetVisitsAction::class => [Service\VisitsTracker::class, 'translator', 'Logger_Shlink'], Action\ShortCode\ListShortCodesAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink'], - Action\EditShortCodeTagsAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink'], + Action\ShortCode\EditShortCodeTagsAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink'], Action\Tag\ListTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class], Action\Tag\DeleteTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class], Action\Tag\CreateTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class], diff --git a/module/Rest/config/routes.config.php b/module/Rest/config/routes.config.php index 27075685..e2e6294d 100644 --- a/module/Rest/config/routes.config.php +++ b/module/Rest/config/routes.config.php @@ -14,7 +14,7 @@ return [ Action\ShortCode\EditShortCodeAction::getRouteDef(), Action\ShortCode\ResolveUrlAction::getRouteDef(), Action\ShortCode\ListShortCodesAction::getRouteDef(), - Action\EditShortCodeTagsAction::getRouteDef(), + Action\ShortCode\EditShortCodeTagsAction::getRouteDef(), // Visits Action\GetVisitsAction::getRouteDef(), diff --git a/module/Rest/src/Action/EditShortCodeTagsAction.php b/module/Rest/src/Action/ShortCode/EditShortCodeTagsAction.php similarity index 95% rename from module/Rest/src/Action/EditShortCodeTagsAction.php rename to module/Rest/src/Action/ShortCode/EditShortCodeTagsAction.php index 309c1e86..b863720b 100644 --- a/module/Rest/src/Action/EditShortCodeTagsAction.php +++ b/module/Rest/src/Action/ShortCode/EditShortCodeTagsAction.php @@ -1,13 +1,14 @@