Skip to content

Commit

Permalink
HOTFIX: 유저 프로필 조회 시 자기 소개도 함께 반환
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxklee committed Nov 10, 2024
1 parent 5921a12 commit cfab055
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public record UserProfileResponse(
Boolean isMyProfile,
String name,
String customId,
String introduce,
Long followerCount,
Long followingCount,
Boolean isFollowing,
Expand All @@ -24,6 +25,7 @@ public static UserProfileResponse from(User user, Boolean isMyProfile, Boolean i
.isMyProfile(isMyProfile)
.name(user.getName())
.customId(user.getCustomId())
.introduce(user.getIntroduce())
.followerCount(user.getFollowerCount())
.followingCount(user.getFollowingCount())
.isFollowing(isFollowing)
Expand Down

0 comments on commit cfab055

Please sign in to comment.