This commit is contained in:
Tatiana Villa Ema 2026-04-29 18:41:25 +02:00
parent 6d1943e1d3
commit 7bda49fb30
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ public class SecurityConfig {
.requestMatchers(HttpMethod.GET, "/parroquias/**").permitAll()
.requestMatchers(HttpMethod.GET, "/calendario/**").permitAll()
.requestMatchers(HttpMethod.GET, "/versos/**").permitAll()
.requestMatchers(HttpMethod.GET, "/santo/**").permitAll()
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.anyRequest().authenticated()
)