We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4634e0b + 69a5838 commit 479928aCopy full SHA for 479928a
1 file changed
src/main/java/com/back/web7_9_codecrete_be/domain/community/post/dto/response/ReviewPostResponse.java
@@ -21,6 +21,9 @@ public class ReviewPostResponse {
21
@Schema(description = "후기 이미지 URL 목록")
22
private List<String> imageUrls;
23
24
+ @Schema(description = "후기 태그 목록")
25
+ private List<String> tags;
26
+
27
public static ReviewPostResponse from(
28
ReviewPost reviewPost,
29
List<String> imageUrls
@@ -29,6 +32,7 @@ public static ReviewPostResponse from(
32
.post(PostResponse.from(reviewPost.getPost()))
30
33
.rating(reviewPost.getRating())
31
34
.imageUrls(imageUrls)
35
+ .tags(reviewPost.getTags())
36
.build();
37
}
38
0 commit comments