Merge pull request #9365 from dataease/pr@dev@fix_auth

fix(系统设置): 修复数据填报权限授权报错问题
This commit is contained in:
王嘉豪
2024-04-26 13:31:14 +08:00
committed by GitHub
2 changed files with 7 additions and 0 deletions

View File

@@ -129,6 +129,10 @@ public class XAuthServer {
if (StringUtils.equals("panel", sourceType)) {
return SysLogConstants.SOURCE_TYPE.PANEL;
}
if (StringUtils.equals("data_fill", sourceType)) {
return SysLogConstants.SOURCE_TYPE.DATA_FILL_FORM;
}
return null;
}

View File

@@ -104,6 +104,9 @@ public class LogManager {
case 11:
typeValue = "menu";
break;
case 13:
typeValue = "data_fill";
break;
default:
break;
}