Compare commits

..

2 Commits

Author SHA1 Message Date
klaus 03ebc9cfe9 Merge pull request 'fix: 큐레이션 아이템 조회' (#319) from test into main
Reviewed-on: #319
2025-05-23 05:43:37 +00:00
Klaus caee89cf53 fix: 큐레이션 아이템 조회
- 관리자에서 지정한 순서대로 보이도록 수정
2025-05-23 14:37:42 +09:00
1 changed files with 1 additions and 0 deletions

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()