This commit is contained in:
van
2026-04-01 01:57:19 +08:00
parent 9f3fb23a91
commit f2f6d02b2f
13 changed files with 347 additions and 0 deletions

View File

@@ -122,6 +122,8 @@ public class SecurityConfig
.antMatchers("/kdocs-callback").permitAll()
// 旧 WPS 回调路径:重定向到新路径,便于后台仍登记旧 URL 时可用
.antMatchers("/wps365-callback").permitAll()
// 企微消息经 wxSend 转发的桥接(依赖请求头共享密钥)
.antMatchers("/jarvis/wecom/inbound").permitAll()
// 静态资源,可匿名访问
.antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
.antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()