Skip to content

Commit

Permalink
Merge pull request #457 from kkkapuq/feature/#456_add_gym_remark
Browse files Browse the repository at this point in the history
Feat : 센터정보에 필요한 remark값 추가
  • Loading branch information
kkkapuq authored May 10, 2024
2 parents b2f7196 + be1de5f commit 9aa4b4f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public record GymResponse(
boolean isLike,
String gymType,
List<GymReviewStatistics.TotalReviewChart.ReviewCount> barChartData,
List<GymReviewStatistics.MonthlyReviewChart.MonthlyReviewCount> lineChartData
) {
List<GymReviewStatistics.MonthlyReviewChart.MonthlyReviewCount> lineChartData,
String remark) {
public static GymResponse of(
GymDto gymDto,
boolean doingBusiness,
Expand Down Expand Up @@ -60,7 +60,8 @@ public static GymResponse of(
isLike,
gymDto.gymType().getDescription(),
gymReviewStatistics.barChartData(),
gymReviewStatistics.lineChartData()
gymReviewStatistics.lineChartData(),
gymDto.remark()
);
}

Expand Down

0 comments on commit 9aa4b4f

Please sign in to comment.