fix: 큐레이션 아이템 조회

- 관리자에서 지정한 순서대로 보이도록 수정
This commit is contained in:
2025-05-23 14:37:42 +09:00
parent e67b798714
commit caee89cf53

View File

@@ -958,6 +958,7 @@ class AudioContentQueryRepositoryImpl(
.innerJoin(audioContent.member, member)
.leftJoin(blockMember).on(blockMemberCondition)
.where(where)
.orderBy(audioContentCurationItem.orders.asc())
.offset(offset)
.limit(limit)
.fetch()