Skip to content

Commit

Permalink
Merge pull request #78 from team-JMT/hotfix/fixApiResponse
Browse files Browse the repository at this point in the history
[fix] : 그룹 검색 결과 response에 그룹 이미지 추가
  • Loading branch information
myeongju00 authored Mar 16, 2024
2 parents 4e64948 + 1b2f82a commit 8167d08
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 8167d08

Please sign in to comment.