mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
37 lines
855 B
PHP
37 lines
855 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Rest;
|
|
|
|
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
|
|
|
return [
|
|
|
|
'auth' => [
|
|
'routes_without_api_key' => [
|
|
Action\HealthAction::class,
|
|
ConfigProvider::UNVERSIONED_HEALTH_ENDPOINT_NAME,
|
|
],
|
|
|
|
'routes_with_query_api_key' => [
|
|
Action\ShortUrl\SingleStepCreateShortUrlAction::class,
|
|
],
|
|
],
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
Middleware\AuthenticationMiddleware::class => ConfigAbstractFactory::class,
|
|
],
|
|
],
|
|
|
|
ConfigAbstractFactory::class => [
|
|
Middleware\AuthenticationMiddleware::class => [
|
|
Service\ApiKeyService::class,
|
|
'config.auth.routes_without_api_key',
|
|
'config.auth.routes_with_query_api_key',
|
|
],
|
|
],
|
|
|
|
];
|