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 e508dafb34 - Show all commits

View File

@ -124,7 +124,8 @@ class ContentSeriesContentQueryRepositoryImpl(
audioContent.duration,
audioContent.price,
Expressions.asBoolean(false),
Expressions.asBoolean(false)
Expressions.asBoolean(false),
audioContent.isPointAvailable
)
)
.from(seriesContent)

View File

@ -15,5 +15,6 @@ data class GetSeriesContentListItem @QueryProjection constructor(
val duration: String,
val price: Int,
var isRented: Boolean,
var isOwned: Boolean
var isOwned: Boolean,
val isPointAvailable: Boolean
)