mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 17:08:58 +03:00
21 lines
500 B
PHP
21 lines
500 B
PHP
<?php
|
|
use Shlinkio\Shlink\Core\Action;
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
[
|
|
'name' => 'long-url-redirect',
|
|
'path' => '/{shortCode}',
|
|
'middleware' => Action\RedirectAction::class,
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
[
|
|
'name' => 'short-url-qr-code',
|
|
'path' => '/qr/{shortCode}[/{size:[0-9]+}]',
|
|
'middleware' => Action\QrCodeAction::class,
|
|
'allowed_methods' => ['GET'],
|
|
],
|
|
],
|
|
|
|
];
|