콘텐츠 고정

- 고정 콘텐츠 리스트 정렬 순서 변경
This commit is contained in:
Klaus 2024-01-27 03:42:27 +09:00
parent cec4cd0d28
commit f70e5bae9a
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class PinContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) :
return queryFactory
.selectFrom(pinContent)
.where(where)
.orderBy(pinContent.updatedAt.asc())
.orderBy(pinContent.isActive.asc(), pinContent.updatedAt.asc())
.fetch()
}