fix: 메인 홈 API - 요일별 시리즈

- 시리즈 생성 날짜 내림차순 정렬
This commit is contained in:
Klaus 2025-07-15 04:03:38 +09:00
parent 3cedd36e15
commit 4436e6f20a
1 changed files with 1 additions and 0 deletions

View File

@ -414,6 +414,7 @@ class ContentSeriesQueryRepositoryImpl(
.groupBy(series.id) .groupBy(series.id)
.offset(offset) .offset(offset)
.limit(limit) .limit(limit)
.orderBy(series.createdAt.desc())
.fetch() .fetch()
} }
} }