test #324
|
@ -262,7 +262,8 @@ class AudioContentQueryRepositoryImpl(
|
|||
audioContent.releaseDate.gt(LocalDateTime.now()),
|
||||
Expressions.asBoolean(false),
|
||||
Expressions.asBoolean(false),
|
||||
audioContent.remaining.loe(0)
|
||||
audioContent.remaining.loe(0),
|
||||
audioContent.isPointAvailable
|
||||
)
|
||||
)
|
||||
.from(audioContent)
|
||||
|
|
|
@ -21,5 +21,6 @@ data class GetAudioContentListItem @QueryProjection constructor(
|
|||
val isScheduledToOpen: Boolean,
|
||||
var isRented: Boolean,
|
||||
var isOwned: Boolean,
|
||||
var isSoldOut: Boolean
|
||||
var isSoldOut: Boolean,
|
||||
val isPointAvailable: Boolean
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue