크리에이터 커뮤니티 #102

Merged
klaus merged 18 commits from test into main 2023-12-21 15:10:56 +00:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit 7204233663 - Show all commits

View File

@ -272,7 +272,6 @@ class CreatorCommunityService(
)
val totalCount = commentRepository.totalCountCommentByPostId(postId = postId)
return GetCommunityPostCommentListResponse(totalCount = totalCount, items = commentList)
}
}

View File

@ -41,6 +41,7 @@ class CreatorCommunityCommentQueryRepositoryImpl(
)
.offset(offset)
.limit(limit)
.orderBy(creatorCommunityComment.createdAt.desc())
.fetch()
.asSequence()
.map {