feat(home): 인기 커뮤니티 좋아요 응답을 추가한다

This commit is contained in:
2026-06-30 01:08:25 +09:00
parent 6c2c8a0386
commit 2789670615
4 changed files with 19 additions and 8 deletions

View File

@@ -305,7 +305,8 @@ class HomeRecommendationFacade(
createdAt = createdAt.toUtcIso(),
likeCount = likeCount,
commentCount = commentCount,
existOrdered = existOrdered
existOrdered = existOrdered,
isLiked = isLiked
)
companion object {

View File

@@ -88,5 +88,7 @@ data class HomePopularCommunityPostItem(
val createdAt: String,
val likeCount: Long,
val commentCount: Long,
val existOrdered: Boolean
val existOrdered: Boolean,
@JsonProperty("isLiked")
val isLiked: Boolean
)