mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 09:03:07 +03:00
29 lines
799 B
PHP
29 lines
799 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use Shlinkio\Shlink\Rest\Action;
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
Action\AuthenticateAction::getRouteDef(),
|
|
|
|
// Short codes
|
|
Action\CreateShortCodeAction::getRouteDef(),
|
|
Action\ShortCode\SingleStepCreateShortCodeAction::getRouteDef(),
|
|
Action\EditShortCodeAction::getRouteDef(),
|
|
Action\ResolveUrlAction::getRouteDef(),
|
|
Action\ListShortCodesAction::getRouteDef(),
|
|
Action\EditShortCodeTagsAction::getRouteDef(),
|
|
|
|
// Visits
|
|
Action\GetVisitsAction::getRouteDef(),
|
|
|
|
// Tags
|
|
Action\Tag\ListTagsAction::getRouteDef(),
|
|
Action\Tag\DeleteTagsAction::getRouteDef(),
|
|
Action\Tag\CreateTagsAction::getRouteDef(),
|
|
Action\Tag\UpdateTagAction::getRouteDef(),
|
|
],
|
|
|
|
];
|