shlink/module/Core/config/routes.config.php

49 lines
1.3 KiB
PHP
Raw Normal View History

2016-04-10 02:38:07 -05:00
<?php
2019-10-05 10:26:10 -05:00
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
use Fig\Http\Message\RequestMethodInterface as RequestMethod;
use RKA\Middleware\IpAddress;
2016-08-09 03:24:42 -05:00
use Shlinkio\Shlink\Core\Action;
2016-04-10 02:38:07 -05:00
return [
'routes' => [
[
'name' => Action\RobotsAction::class,
'path' => '/robots.txt',
'middleware' => [
Action\RobotsAction::class,
],
'allowed_methods' => [RequestMethod::METHOD_GET],
],
[
'name' => Action\RedirectAction::class,
'path' => '/{shortCode}',
'middleware' => [
IpAddress::class,
Action\RedirectAction::class,
],
'allowed_methods' => [RequestMethod::METHOD_GET],
2016-08-09 03:24:42 -05:00
],
[
'name' => Action\PixelAction::class,
'path' => '/{shortCode}/track',
'middleware' => [
IpAddress::class,
Action\PixelAction::class,
],
'allowed_methods' => [RequestMethod::METHOD_GET],
],
2016-08-09 03:24:42 -05:00
[
'name' => Action\QrCodeAction::class,
2020-11-27 10:05:13 -06:00
'path' => '/{shortCode}/qr-code',
'middleware' => [
Action\QrCodeAction::class,
],
'allowed_methods' => [RequestMethod::METHOD_GET],
],
2016-04-10 02:38:07 -05:00
],
2016-04-17 12:34:16 -05:00
2016-04-10 02:38:07 -05:00
];