synchronizer DEFAULT PASSWORD

This commit is contained in:
MaxKey
2022-03-10 10:54:11 +08:00
parent 122c262b0e
commit ea1bf3a9a1
8 changed files with 12 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ public class FeishuUsersService extends AbstractSynchronizerService implements I
for(FeishuUsers user : usersResponse.getData().getItems()) {
UserInfo userInfo = buildUserInfo(user);
_logger.info("userInfo : " + userInfo);
userInfo.setPassword(userInfo.getUsername() + "Maxkey@888");
userInfo.setPassword(userInfo.getUsername() + UserInfo.DEFAULT_PASSWORD_SUFFIX);
userInfoService.saveOrUpdate(userInfo);
}
}