修复非鉴权接口的跨域失败问题

pull/1217/head
648540858 2023-12-15 17:54:34 +08:00
parent 3a1fc63d7a
commit 0a245c4cfe
1 changed files with 0 additions and 1 deletions

View File

@ -77,7 +77,6 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
matchers.add("/api/device/query/snap/**");
matchers.add("/record_proxy/*/**");
matchers.add("/api/emit");
matchers.addAll(userSetting.getInterfaceAuthenticationExcludes());
// 可以直接访问的静态数据
web.ignoring().antMatchers(matchers.toArray(new String[0]));
}