feat(home-latest-content): 최신 콘텐츠 조회시 정렬 조건 변경
- 기존: id 내림차순 - 변경: 오픈일 내림차순
This commit is contained in:
@@ -1360,7 +1360,7 @@ class AudioContentQueryRepositoryImpl(
|
|||||||
.where(where)
|
.where(where)
|
||||||
.offset(offset)
|
.offset(offset)
|
||||||
.limit(limit)
|
.limit(limit)
|
||||||
.orderBy(audioContent.id.desc())
|
.orderBy(audioContent.releaseDate.desc())
|
||||||
.fetch()
|
.fetch()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user