mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-20 02:25:54 +03:00
14 lines
191 B
PHP
14 lines
191 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Rest;
|
|
|
|
return [
|
|
|
|
'auth' => [
|
|
'routes_whitelist' => [
|
|
Action\AuthenticateAction::class,
|
|
],
|
|
],
|
|
|
|
];
|