adding email otp verification

This commit is contained in:
2025-10-09 20:33:12 +02:00
parent 230f16e08d
commit f6e04f302c
6 changed files with 54 additions and 27 deletions

View File

@@ -29,7 +29,8 @@ public class SecurityConfig {
http
.csrf(AbstractHttpConfigurer::disable)
.authorizeHttpRequests(auth -> auth
.requestMatchers("/explorer/**").permitAll()
.requestMatchers("/test/**").permitAll()
.requestMatchers("/explorer/**").permitAll()
.requestMatchers("/nflow/**").permitAll()
.requestMatchers("/auth/**").permitAll()
.requestMatchers("/public/**").permitAll()