relax sec exec

This commit is contained in:
andrea.terzani
2025-05-15 13:14:17 +02:00
parent 651c80d541
commit 83be4ba8e5

View File

@@ -68,6 +68,8 @@ public class SecurityConfig {
.csrf().disable()
.authorizeHttpRequests(auth -> auth
.requestMatchers("/api/auth/**", "/login").permitAll()
.requestMatchers("/scenarios/execute-async").permitAll()
.requestMatchers("/scenarios/getExecutionProgress/**").permitAll()
.anyRequest().authenticated()
)
.authenticationProvider(authenticationProvider())