Skip to content

Commit

Permalink
Merge pull request #207 from Team-Shaka/feature/206
Browse files Browse the repository at this point in the history
Feature/206 : 브리핑 목록 조회 응답 조회수 추가
  • Loading branch information
swa07016 authored Jun 17, 2024
2 parents 07b9bd5 + cb27f8d commit aecf105
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 @@ -23,6 +23,7 @@ public static BriefingResponseDTO.BriefingPreviewDTOV2 toBriefingPreviewDTOV2(
.title(briefing.getTitle())
.subtitle(briefing.getSubtitle())
.scrapCount(briefing.getScrapCount())
.viewCount(briefing.getViewCount())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public static class BriefingPreviewDTOV2 {
String title;
String subtitle;
@Builder.Default Integer scrapCount = 0;
@Builder.Default Integer viewCount = 0;
}

@Builder
Expand Down

0 comments on commit aecf105

Please sign in to comment.