콘텐츠 정렬 기준

- AS-IS : 올린 순서 기준 정렬 ( created_at )
- TO-BE : 릴리즈 순서 기준 정렬 ( release_date )
This commit is contained in:
2024-01-24 23:58:05 +09:00
parent 8f44d0b2cd
commit 1ec7a6f096
3 changed files with 8 additions and 8 deletions

View File

@@ -94,7 +94,7 @@ class CreatorAdminAudioContentQueryRepositoryImpl(
.where(where)
.offset(offset)
.limit(limit)
.orderBy(audioContent.id.desc())
.orderBy(audioContent.releaseDate.desc())
.fetch()
}