커뮤니티 게시물 정렬 - 등록 내림차순으로 수정

This commit is contained in:
Klaus 2023-12-20 03:32:45 +09:00
parent 7204233663
commit 0df0d71660
1 changed files with 1 additions and 0 deletions

View File

@ -49,6 +49,7 @@ class CreatorCommunityQueryRepositoryImpl(private val queryFactory: JPAQueryFact
.where(where)
.offset(offset)
.limit(limit)
.orderBy(creatorCommunity.createdAt.desc())
.fetch()
}