Skip to content

Commit

Permalink
Merge pull request #64 from Kusitms-29th-Meetup-TeamE/fix/63/chip
Browse files Browse the repository at this point in the history
Fix: 활동 칩 추가
  • Loading branch information
Jeongho427 authored May 20, 2024
2 parents 7b08951 + e9ac943 commit 1c07e87
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public class ActivitySummaryRes {

private String title;

private String personality;

private String agency;

private String agencyType;
Expand All @@ -37,6 +39,7 @@ public static ActivitySummaryRes of(Activity activity, boolean isLiked) {
return ActivitySummaryRes.builder()
.id(activity.getId())
.title(activity.getTitle())
.personality(activity.getPersonalities().get(0).getDescription())
.agency(activity.getAgency())
.agencyType(activity.getAgencyType().getDescription())
.location(activity.getLocation())
Expand Down

0 comments on commit 1c07e87

Please sign in to comment.