fix(系统设置):创建缺陷创建人信息错误
--bug=1024663 --user=王旭 【测试跟踪】github#22942,Azure Devops 平台,创建缺陷,创建人不是【个人信息】配置的 token 对应的人,而是 【工作空间】配置的 token 对应的人 https://www.tapd.cn/55049933/s/1353708
This commit is contained in:
parent
025ad05767
commit
f53f882480
|
@ -21,7 +21,7 @@ public class UserService {
|
||||||
public UserDTO.PlatformInfo getCurrentPlatformInfo(String workspaceId) {
|
public UserDTO.PlatformInfo getCurrentPlatformInfo(String workspaceId) {
|
||||||
String currentPlatformInfoStr = getCurrentPlatformInfoStr(workspaceId);
|
String currentPlatformInfoStr = getCurrentPlatformInfoStr(workspaceId);
|
||||||
if (StringUtils.isNotBlank(currentPlatformInfoStr)) {
|
if (StringUtils.isNotBlank(currentPlatformInfoStr)) {
|
||||||
JSON.parseObject(currentPlatformInfoStr, UserDTO.PlatformInfo.class);
|
return JSON.parseObject(currentPlatformInfoStr, UserDTO.PlatformInfo.class);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue