Skip to content

Commit

Permalink
Closes #2616 - Address PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
CRoberto1926 authored and Jörg Heffner committed Aug 6, 2024
1 parent 8c7db83 commit 409c9e2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers(HttpMethod.GET, "/docs/**")
.permitAll()
.requestMatchers(
HttpMethod.GET, "/api-docs", "/api-docs/**", "swagger-ui", "/swagger-ui/**")
HttpMethod.GET,
"/api-docs",
"/api-docs/**",
"/swagger-ui",
"/swagger-ui/**")
.permitAll())
.cors(Customizer.withDefaults())
.addFilter(jaasApiIntegrationFilter())
Expand Down

0 comments on commit 409c9e2

Please sign in to comment.