From 2a540ad43d78785211489839b6fa835174c9db3d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 29 Feb 2024 16:29:30 +0100 Subject: [PATCH] Comment user in memory to enable air bundle auth --- config/packages/security.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/packages/security.yaml b/config/packages/security.yaml index 367af25..adf6514 100644 --- a/config/packages/security.yaml +++ b/config/packages/security.yaml @@ -3,15 +3,15 @@ security: password_hashers: Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto' # https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider - providers: - users_in_memory: { memory: null } +# providers: +# users_in_memory: { memory: null } firewalls: dev: pattern: ^/(_(profiler|wdt)|css|images|js)/ security: false main: lazy: true - provider: users_in_memory +# provider: users_in_memory # activate different ways to authenticate # https://symfony.com/doc/current/security.html#the-firewall -- 2.41.0