mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
16 lines
258 B
PHP
16 lines
258 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Rest;
|
|
|
|
return [
|
|
|
|
'auth' => [
|
|
'routes_whitelist' => [
|
|
Action\AuthenticateAction::class,
|
|
Action\ShortUrl\SingleStepCreateShortUrlAction::class,
|
|
],
|
|
],
|
|
|
|
];
|