Fix register route security

This commit is contained in:
Tim 2025-03-01 16:31:46 +01:00
parent b2bc519e26
commit 473a5294ea

View File

@ -39,7 +39,7 @@ security:
# Note: Only the *first* access control that matches will be used
access_control:
- { path: ^/login$, role: PUBLIC_ACCESS }
- { path: ^/register, role: PUBLIC_ACCESS }
- { path: ^/register$, role: PUBLIC_ACCESS }
- { path: ^/logout$, role: ROLE_USER }
- { path: ^/admin, role: ROLE_ADMIN }