From 611c9555a9b1f50b981cab9d1d6972873b6b9297 Mon Sep 17 00:00:00 2001 From: Mathieu De Keyzer Date: Thu, 24 Oct 2024 21:34:16 +0200 Subject: [PATCH] fix(admin/security): give public access to route prefixed with /bundle (#1053) --- elasticms-admin/config/packages/security.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/elasticms-admin/config/packages/security.yaml b/elasticms-admin/config/packages/security.yaml index 500118048..d5db88994 100644 --- a/elasticms-admin/config/packages/security.yaml +++ b/elasticms-admin/config/packages/security.yaml @@ -58,6 +58,7 @@ security: access_control: - { path: ^/$, role: PUBLIC_ACCESS } - { path: ^/metrics$, role: PUBLIC_ACCESS } + - { path: ^/bundle, role: PUBLIC_ACCESS } - { path: ^/favicon.ico$, role: PUBLIC_ACCESS } - { path: ^/apple\-touch\-icon\.png$, role: PUBLIC_ACCESS } - { path: ^/favicon\-(16|32|48|64|128|256)x(16|32|48|64|128|256)\.png$, role: PUBLIC_ACCESS }