From da0103c98a81031b312ceade6025c59e4c10cb1b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 16 Oct 2025 17:23:01 +0200 Subject: [PATCH] Enable csrf protection --- config/packages/framework.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/packages/framework.yaml b/config/packages/framework.yaml index 877eb25..f64e9d0 100644 --- a/config/packages/framework.yaml +++ b/config/packages/framework.yaml @@ -1,7 +1,7 @@ # see https://symfony.com/doc/current/reference/configuration/framework.html framework: secret: '%env(APP_SECRET)%' - #csrf_protection: true + csrf_protection: true # Note that the session will be started ONLY if you read or write from it. session: true -- 2.41.3