Skip to content

Commit

Permalink
✨ Feat: 로그인 시, 프로필 이미지 URL도 같이 출력
Browse files Browse the repository at this point in the history
  • Loading branch information
koojun99 committed Jul 28, 2024
1 parent a03291f commit 2fb85b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public static UserResponseDTO.loginMember toLogin(User user, String accessToken,
return UserResponseDTO.loginMember.builder()
.userId(user.getId())
.userName(user.getName())
.profileImageUrl(user.getProfileImageUrl())
.accessToken(accessToken)
.refreshToken(refreshToken)
.treehouseIdList(treehouseIdList)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public static class loginMember {

private Long userId;
private String userName;
private String profileImageUrl;
private String accessToken;
private String refreshToken;
private List<Long> treehouseIdList;
Expand Down

0 comments on commit 2fb85b1

Please sign in to comment.