Commit d045b505 by Patryk Czarnik

permitAll

parent c411c606
...@@ -12,6 +12,10 @@ public class SecurityConfig { ...@@ -12,6 +12,10 @@ public class SecurityConfig {
@Bean @Bean
SecurityFilterChain configHttpSecurity(HttpSecurity httpSecurity) throws Exception { SecurityFilterChain configHttpSecurity(HttpSecurity httpSecurity) throws Exception {
httpSecurity.authorizeHttpRequests(authz -> authz
.anyRequest().permitAll()
)
;
return httpSecurity.build(); return httpSecurity.build();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment