From a767613b587c49f5ad6e1c4038469edc1e79788d Mon Sep 17 00:00:00 2001 From: ccmjga Date: Sat, 28 Jun 2025 22:41:24 +0800 Subject: [PATCH] publicEndPointMatcher fix --- .../main/java/com/zl/mjga/config/security/WebSecurityConfig.java | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/main/java/com/zl/mjga/config/security/WebSecurityConfig.java b/backend/src/main/java/com/zl/mjga/config/security/WebSecurityConfig.java index d43c3cd..6592366 100644 --- a/backend/src/main/java/com/zl/mjga/config/security/WebSecurityConfig.java +++ b/backend/src/main/java/com/zl/mjga/config/security/WebSecurityConfig.java @@ -41,7 +41,6 @@ public class WebSecurityConfig { new AntPathRequestMatcher("/auth/sign-up", HttpMethod.POST.name()), new AntPathRequestMatcher("/v3/api-docs/**", HttpMethod.GET.name()), new AntPathRequestMatcher("/swagger-ui/**", HttpMethod.GET.name()), - new AntPathRequestMatcher("/ai/library/upload", HttpMethod.POST.name()), new AntPathRequestMatcher("/swagger-ui.html", HttpMethod.GET.name()), new AntPathRequestMatcher("/error")); }