콘텐츠 상단 고정 기능 추가 #120

Merged
klaus merged 12 commits from test into main 2024-01-29 02:45:42 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit f70e5bae9a - Show all commits

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