Commit 57be941c authored by Arie Valdano's avatar Arie Valdano

FIXING : config application properties and swagger

parent 94f418f9
...@@ -36,7 +36,10 @@ public class SecurityConfig { ...@@ -36,7 +36,10 @@ public class SecurityConfig {
.csrf(AbstractHttpConfigurer::disable) .csrf(AbstractHttpConfigurer::disable)
.authorizeHttpRequests( .authorizeHttpRequests(
req -> req.requestMatchers( req -> req.requestMatchers(
"/api/authentication/**") "/api/authentication/**",
"/swagger-ui/**",
"/v3/api-docs/**",
"/swagger-ui.html")
.permitAll() .permitAll()
.anyRequest() .anyRequest()
.authenticated() .authenticated()
......
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