src/main/java/kr/wisestone/owl/service/impl/UserServiceImpl.java
@@ -541,8 +541,12 @@ User user = this.getUser(userCondition.getId()); userVo = ConvertUtil.copyProperties(user, UserVo.class, "password"); userVo.setAccount(CommonUtil.decryptAES128(userVo.getAccount())); } Map<String, Object> projectManagerYN = this.projectRoleUserService.findProjectManager((userCondition.getId())); if(projectManagerYN != null){ userVo.setProjectManagerYN(true); } } resJsonData.put(Constants.RES_KEY_CONTENTS, userVo); }