config(security): 允许匿名访问看板接口

- 新增两个接口的访问权限: - /ems/base/baseMonitorInfo/list
  - /ems/base/baseMonitorInfo/monitorInfoTree
-这些接口现在可以无需认证直接访问
IOT
zch 2 months ago
parent f332e2d984
commit c8f352275d

@ -123,6 +123,8 @@ public class SecurityConfig
.antMatchers("/record/recordBusbarAlarm/recordBusbarAlarmCount").permitAll()
.antMatchers("/ems/record/recordIOTInstant/selectLastTWTempertureData").permitAll()
.antMatchers("/record/recordBusbarTemp/boardTempList").permitAll()
.antMatchers("/ems/base/baseMonitorInfo/list").permitAll()
.antMatchers("/ems/base/baseMonitorInfo/monitorInfoTree").permitAll()
// 允许匿名访问 看板 下所有页面
.antMatchers("/board/**").permitAll()

Loading…
Cancel
Save