feat(community): 채널 커뮤니티 좋아요 모델을 추가한다

This commit is contained in:
2026-06-30 01:09:13 +09:00
parent 2789670615
commit 16ec1240bb
5 changed files with 19 additions and 9 deletions

View File

@@ -121,7 +121,8 @@ class CreatorChannelCommunityQueryService(
isCommentAvailable = isCommentAvailable,
likeCount = likeCount,
commentCount = commentCount,
isPinned = isPinned
isPinned = isPinned,
isLiked = isLiked
)
}

View File

@@ -24,5 +24,6 @@ data class CreatorChannelCommunityPost(
val isCommentAvailable: Boolean,
val likeCount: Int,
val commentCount: Int,
val isPinned: Boolean
val isPinned: Boolean,
val isLiked: Boolean
)

View File

@@ -51,5 +51,6 @@ data class CreatorChannelCommunityPostRecord(
val isCommentAvailable: Boolean,
val likeCount: Int,
val commentCount: Int,
val isPinned: Boolean
val isPinned: Boolean,
val isLiked: Boolean
)