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
commit 9da4050b71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;
}