test #324

Merged
klaus merged 8 commits from test into main 2025-06-10 11:01:32 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 8335717741 - Show all commits

View File

@ -262,7 +262,8 @@ class AudioContentQueryRepositoryImpl(
audioContent.releaseDate.gt(LocalDateTime.now()), audioContent.releaseDate.gt(LocalDateTime.now()),
Expressions.asBoolean(false), Expressions.asBoolean(false),
Expressions.asBoolean(false), Expressions.asBoolean(false),
audioContent.remaining.loe(0) audioContent.remaining.loe(0),
audioContent.isPointAvailable
) )
) )
.from(audioContent) .from(audioContent)

View File

@ -21,5 +21,6 @@ data class GetAudioContentListItem @QueryProjection constructor(
val isScheduledToOpen: Boolean, val isScheduledToOpen: Boolean,
var isRented: Boolean, var isRented: Boolean,
var isOwned: Boolean, var isOwned: Boolean,
var isSoldOut: Boolean var isSoldOut: Boolean,
val isPointAvailable: Boolean
) )