From 3e08d00cb246a3d18f548a30febdecc32c025805 Mon Sep 17 00:00:00 2001 From: aelimited Date: Mon, 10 Jun 2024 11:37:41 +0900 Subject: [PATCH] =?UTF-8?q?[FIX]=20#102=20-=20clubResponse=EC=97=90=20club?= =?UTF-8?q?=20detailedIntroduction=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - clubResponse에 club detailedIntroduction 추가 --- .../com/core/linkup/club/club/converter/ClubConverter.java | 4 +++- .../core/linkup/club/club/response/ClubSearchResponse.java | 1 + .../linkup/club/clubnotice/converter/ClubBoardConverter.java | 2 -- .../linkup/club/clubnotice/response/ClubBoardResponse.java | 1 - 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/core/linkup/club/club/converter/ClubConverter.java b/src/main/java/com/core/linkup/club/club/converter/ClubConverter.java index e8598bd..2d45761 100644 --- a/src/main/java/com/core/linkup/club/club/converter/ClubConverter.java +++ b/src/main/java/com/core/linkup/club/club/converter/ClubConverter.java @@ -24,7 +24,7 @@ public ClubSearchResponse toClubResponses(Club club, Member member) { return ClubSearchResponse.builder() .id(club.getId()) .title(club.getTitle()) - .introduction(club.getIntroduction()) + .detailIntroduction(club.getDetailedIntroduction()) .clubType(club.getCategory().getClubCategoryName()) .recruitCount(club.getRecruitCount()) .memberId(member.getId()) //소모임을 생성함 멤버의 아이디 @@ -39,6 +39,7 @@ public ClubSearchResponse toClubResponses(Club club, Member member, boolean like .id(club.getId()) .title(club.getTitle()) .introduction(club.getIntroduction()) + .detailIntroduction(club.getDetailedIntroduction()) .clubType(club.getCategory().getClubCategoryName()) .recruitCount(club.getRecruitCount()) .memberId(member.getId()) //소모임을 생성함 멤버의 아이디 @@ -79,6 +80,7 @@ public ClubSearchResponse toClubResponse(Club club, Member member, List