Make snip public index available if not logged in

This commit is contained in:
Tim
2025-04-14 23:48:32 +02:00
parent 22c8126cea
commit 5cec259469
5 changed files with 35 additions and 16 deletions

View File

@ -43,7 +43,10 @@ security:
- { path: ^/logout$, role: ROLE_USER }
- { path: ^/admin, role: ROLE_ADMIN }
- { path: ^/$, role: PUBLIC_ACCESS }
- { path: ^/snip/single, role: PUBLIC_ACCESS }
- { path: ^/snip/raw, role: PUBLIC_ACCESS }
- { path: ^/snip/public$, role: PUBLIC_ACCESS }
- { path: ^/, role: ROLE_USER }