mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use Shlinkio\Shlink\Core\Action;
|
|
use Shlinkio\Shlink\Core\Middleware;
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => 'long-url-redirect',
|
|
'path' => '/{shortCode}',
|
|
'middleware' => Action\RedirectAction::class,
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
[
|
|
'name' => 'short-url-qr-code',
|
|
'path' => '/{shortCode}/qr-code[/{size:[0-9]+}]',
|
|
'middleware' => [
|
|
Middleware\QrCodeCacheMiddleware::class,
|
|
Action\QrCodeAction::class,
|
|
],
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
[
|
|
'name' => 'short-url-preview',
|
|
'path' => '/{shortCode}/preview',
|
|
'middleware' => Action\PreviewAction::class,
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
|
|
// Old QR code route. Deprecated
|
|
[
|
|
'name' => 'short-url-qr-code-old',
|
|
'path' => '/qr/{shortCode}[/{size:[0-9]+}]',
|
|
'middleware' => [
|
|
Middleware\QrCodeCacheMiddleware::class,
|
|
Action\QrCodeAction::class,
|
|
],
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
],
|
|
|
|
];
|