콘텐츠 상단 고정 기능 추가 #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 0 deletions
Showing only changes of commit bf634b09db - Show all commits

View File

@ -614,6 +614,7 @@ class AudioContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory)
val where = audioContent.isActive.isFalse val where = audioContent.isActive.isFalse
.and(audioContent.releaseDate.isNotNull) .and(audioContent.releaseDate.isNotNull)
.and(audioContent.releaseDate.loe(LocalDateTime.now())) .and(audioContent.releaseDate.loe(LocalDateTime.now()))
.and(audioContent.duration.isNotNull)
return queryFactory return queryFactory
.select(audioContent.id) .select(audioContent.id)