Skip to content

Commit

Permalink
♻️ : 유저 리스트 응답 nickname 필드 add
Browse files Browse the repository at this point in the history
  • Loading branch information
imenuuu committed Jan 22, 2024
1 parent a805824 commit f4a228e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ public UserRes.UserList convertToUserList(UserRepository.UserList result) {
.userId(result.getUserId())
.name(result.getName())
.birth(String.valueOf(result.getBirth()))
.nickname(result.getNickname())
.socialType(result.getSocialType().getName())
.gender(result.getGender() == null ? null : result.getGender().getValue())
.email(result.getEmail())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ public static class UserList {

private String name;

private String nickname;

private String birth;

private String socialType;
Expand Down

0 comments on commit f4a228e

Please sign in to comment.