From 854d28d25dd5e06a697dbbe6e76cd9e9d5ad85ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20lombardot?= Date: Wed, 2 Jul 2025 11:44:59 +0200 Subject: [PATCH] Fix check path to match generated swagger url --- symfony/jwt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symfony/jwt.md b/symfony/jwt.md index 4330a5bf5f6..5f25ae75192 100644 --- a/symfony/jwt.md +++ b/symfony/jwt.md @@ -95,7 +95,7 @@ security: stateless: true provider: users json_login: - check_path: auth # The name in routes.yaml is enough for mapping + check_path: /auth # The name in routes.yaml is enough for mapping username_path: email password_path: password success_handler: lexik_jwt_authentication.handler.authentication_success @@ -154,7 +154,7 @@ security: jwt: ~ main: json_login: - check_path: auth # The name in routes.yaml is enough for mapping + check_path: /auth # The name in routes.yaml is enough for mapping username_path: email password_path: password success_handler: lexik_jwt_authentication.handler.authentication_success