Closes #2616 - Address PR comment
This commit is contained in:
parent
41b228029f
commit
b90a9556d8
|
|
@ -76,7 +76,11 @@ public class BootWebSecurityConfigurer {
|
||||||
.requestMatchers(HttpMethod.GET, "/docs/**")
|
.requestMatchers(HttpMethod.GET, "/docs/**")
|
||||||
.permitAll()
|
.permitAll()
|
||||||
.requestMatchers(
|
.requestMatchers(
|
||||||
HttpMethod.GET, "/api-docs", "/api-docs/**", "swagger-ui", "/swagger-ui/**")
|
HttpMethod.GET,
|
||||||
|
"/api-docs",
|
||||||
|
"/api-docs/**",
|
||||||
|
"/swagger-ui",
|
||||||
|
"/swagger-ui/**")
|
||||||
.permitAll())
|
.permitAll())
|
||||||
.cors(Customizer.withDefaults())
|
.cors(Customizer.withDefaults())
|
||||||
.addFilter(jaasApiIntegrationFilter())
|
.addFilter(jaasApiIntegrationFilter())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue