Skip to content

Commit 368be65

Browse files
authored
Fixes missing leading slash in [api-docs/swagger-config/**] pattern (#917)
1 parent 408d166 commit 368be65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

basyx.common/basyx.authorization/src/main/java/org/eclipse/digitaltwin/basyx/authorization/CommonSecurityConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
5252
.requestMatchers("/swagger-ui/**").permitAll()
5353
.requestMatchers("/v3/**").permitAll()
5454
.requestMatchers("/api-docs/**").permitAll()
55-
.requestMatchers("api-docs/swagger-config/**").permitAll()
55+
.requestMatchers("/api-docs/swagger-config/**").permitAll()
5656
.requestMatchers(HttpMethod.GET, "/description").permitAll()
5757
.anyRequest().authenticated()
5858
)

0 commit comments

Comments
 (0)