From f6184694630684184ac769e202b517be645163b4 Mon Sep 17 00:00:00 2001 From: CRoberto1926 <3205022+CRoberto1926@users.noreply.github.com> Date: Fri, 19 Jul 2024 17:08:10 +0200 Subject: [PATCH] Closes #2616 - Address PR comment --- .../example/boot/security/BootWebSecurityConfigurer.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rest/taskana-rest-spring-example-boot/src/main/java/pro/taskana/example/boot/security/BootWebSecurityConfigurer.java b/rest/taskana-rest-spring-example-boot/src/main/java/pro/taskana/example/boot/security/BootWebSecurityConfigurer.java index e7018863e..afb961793 100644 --- a/rest/taskana-rest-spring-example-boot/src/main/java/pro/taskana/example/boot/security/BootWebSecurityConfigurer.java +++ b/rest/taskana-rest-spring-example-boot/src/main/java/pro/taskana/example/boot/security/BootWebSecurityConfigurer.java @@ -69,7 +69,11 @@ public class BootWebSecurityConfigurer { .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())