test validation erro
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s

This commit is contained in:
androidlover5842
2026-01-26 20:58:57 +05:30
parent 14f739a54f
commit e1680b1991

View File

@@ -17,7 +17,7 @@ class SecurityConfig(
.csrf { it.disable() }
.sessionManagement { it.sessionCreationPolicy(SessionCreationPolicy.STATELESS) }
.authorizeHttpRequests {
it.requestMatchers("/", "/health").permitAll()
it.requestMatchers("/", "/health", "/auth/**").permitAll()
it.anyRequest().authenticated()
}
.addFilterBefore(firebaseAuthFilter, UsernamePasswordAuthenticationFilter::class.java)