Skip to content

Commit

Permalink
[fix] 미션 인증글 목록 조회 API 응답값에 각 인증글 작성자의 유저id 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchoGreenT committed Sep 10, 2024
1 parent 9680f73 commit 1963a88
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

public record MissionPostVo(
Long missionPostId,
Long userId,
int stepNum,
String nickname,
String profileImage,
Expand All @@ -23,6 +24,7 @@ public MissionPostVo(MissionPost missionPost, User user, Long likeCount, Long co
{
this(
missionPost.getId(),
user.getId(),
missionPost.getStepNum(),
user.getNickname(),
user.getProfileImage(),
Expand Down

0 comments on commit 1963a88

Please sign in to comment.