Leuchtfeuer/auth0-for-typo3

View on GitHub
Configuration/RequestMiddlewares.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types = 1);

use Leuchtfeuer\Auth0\Middleware\CallbackMiddleware;

return [
    'frontend' => [
        'leuchtfeuer/auth0/callback' => [
            'target' => CallbackMiddleware::class,
            'after' => [
                'typo3/cms-frontend/authentication',
            ],
            'before' => [
                'typo3/cms-frontend/base-redirect-resolver',
            ],
        ]
    ],
];