Skip to content

Commit

Permalink
[fix] : 그룹 검색 결과 response에 그룹 이미지 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
myeongju00 committed Mar 16, 2024
1 parent 1494e96 commit 1b2f82a
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 @@ -6,6 +6,7 @@
public record FindGroupTitleResponseItem(
Long groupId,
String groupName,
String groupProfileImageUrl,
String groupIntroduce,
int memberCnt,
int restaurantCnt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public FindGroupTitleResponseItem toFindGroupTitleResponse(int memberCnt, int re
return FindGroupTitleResponseItem.builder()
.groupId(this.getGid())
.groupName(this.getGroupName())
.groupProfileImageUrl(this.getGroupProfileImageUrl())
.groupIntroduce(this.getGroupIntroduce())
.memberCnt(memberCnt)
.restaurantCnt(restaurantCnt)
Expand Down

0 comments on commit 1b2f82a

Please sign in to comment.