fix: contextinfo add workspaceType

This commit is contained in:
TanJ 2022-07-11 16:35:45 +08:00
parent 9d8edff9db
commit a58c9dc302

View File

@ -268,6 +268,11 @@ public class ContextInfoBuilderAspect {
} catch (Throwable t) {
log.warn("fill ouType error, user identityId=" + userInfo.getIdentityId());
}
try {
contextInfo.setWorkspaceType(Integer.parseInt(userinfoMap.get("workspaceType").toString()));
}catch (Throwable t) {
log.warn("fill workspaceType error, user identityId=" + userInfo.getIdentityId());
}
try {
fillLegacyGuess(contextInfo, userinfoMap);