From 4990aff51d8da77fb188c8d39416adaa0d97ec54 Mon Sep 17 00:00:00 2001 From: thisfro Date: Sun, 6 Jun 2021 13:13:34 +0200 Subject: [PATCH] Allow unauthicated users to view imprint --- config/packages/security.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/packages/security.yaml b/config/packages/security.yaml index bb7bb7c..497fd75 100644 --- a/config/packages/security.yaml +++ b/config/packages/security.yaml @@ -47,4 +47,4 @@ security: access_control: - { path: ^/$, roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/admin, roles: ROLE_ADMIN } - - { path: ^(?!/(login|register|reset-password|offers|offer)), roles: ROLE_USER } \ No newline at end of file + - { path: ^(?!/(login|register|reset-password|offers|offer|imprint)), roles: ROLE_USER } \ No newline at end of file