Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ private static RecreationPreviewDTO toRecreationPreviewDTO(Recreation recreation
.title(recreation.getTitle())
.totalStars(recreation.getTotalStars())
.summary(recreation.getSummary())
.playTime(recreation.getPlayTime())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public static class RecreationPreviewDTO {
List<Keyword> keywordList;
String imageUrl;
String summary;
Integer playTime;

@Schema(description = "즐겨찾기 여부, 미로그인시 null")
Boolean isFavorite;
Expand Down
Loading