Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot register two routes matching "/" for method "GET" #11

Open
KarelWintersky opened this issue Jan 29, 2025 · 0 comments
Open

Cannot register two routes matching "/" for method "GET" #11

KarelWintersky opened this issue Jan 29, 2025 · 0 comments

Comments

@KarelWintersky
Copy link
Contributor

Нетипичная ситуация:

AppRouter::get('/', [\AJURMediaMaker\Controllers\AuthController::class, 'view_login_page'], 'view_login_page');

AppRouter::group([
        'before'    =>  '\AJURMediaMaker\Middlewares\AuthMiddleware@check_auth'
    ], static function() {

        AppRouter::get('/', [\AJURMediaMaker\Controllers\MainController::class, 'form_upload']);
...
   });

Мы хотим сделать override роута "/" при соблюдении какого-то условия (в данном случае - группы)

Два пути:

А) на этапе group() вызывается миддлвар и проверяются условия.

Мне кажется, это некорректный способ, потому что это этап определения роутов, а не выполнения.

Б) позволять перезаписывать правила роутов. Но как тогда определить, каким именно правилом разрешить его перезаписать? Только выполняя миддлвары

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant