forked from p85126437/datagear
修复在已登录状态下打开/login地址会死循环的BUG
This commit is contained in:
parent
30dcecd4b4
commit
e34fac19e5
|
@ -17,10 +17,10 @@
|
|||
ok 系统缓存统一改为Caffeine,移除Guava以减少程序包大小;
|
||||
ok 标签卡添加横排设置选项,简化配置项;
|
||||
ok 图表开放用于获取底层图表系列数据的原始数据索引API,便于定义底层组件事件处理逻辑时获取原始数据;
|
||||
ok 修复在已登录状态下打开/login地址会死循环的BUG;
|
||||
|
||||
待定:
|
||||
|
||||
修复在已登录状态下打开/login地址会死循环的BUG;
|
||||
修复登录超时后打开页面内对话框未处理超时的BUG;
|
||||
看板图表新增导出数据功能;
|
||||
共享看板支持设置密码;
|
||||
|
|
|
@ -293,7 +293,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
|
|||
.antMatchers("/schemaGuard/**").access(AUTH_ADMIN)
|
||||
|
||||
//
|
||||
.antMatchers("/login/**", "/register/**", "/resetPassword/**").access(AUTH_ANONYMOUS)
|
||||
.antMatchers("/login/**", "/register/**", "/resetPassword/**").permitAll()
|
||||
|
||||
//
|
||||
.antMatchers("/**").access(disableAnonymous ? AUTH_USER_ADMIN : AUTH_ANONYMOUS_USER_ADMIN)
|
||||
|
|
Loading…
Reference in New Issue