feat: 시리즈 상세 콘텐츠 리스트 - 포인트 사용 가능 여부 추가
This commit is contained in:
parent
8335717741
commit
e508dafb34
|
@ -124,7 +124,8 @@ class ContentSeriesContentQueryRepositoryImpl(
|
||||||
audioContent.duration,
|
audioContent.duration,
|
||||||
audioContent.price,
|
audioContent.price,
|
||||||
Expressions.asBoolean(false),
|
Expressions.asBoolean(false),
|
||||||
Expressions.asBoolean(false)
|
Expressions.asBoolean(false),
|
||||||
|
audioContent.isPointAvailable
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.from(seriesContent)
|
.from(seriesContent)
|
||||||
|
|
|
@ -15,5 +15,6 @@ data class GetSeriesContentListItem @QueryProjection constructor(
|
||||||
val duration: String,
|
val duration: String,
|
||||||
val price: Int,
|
val price: Int,
|
||||||
var isRented: Boolean,
|
var isRented: Boolean,
|
||||||
var isOwned: Boolean
|
var isOwned: Boolean,
|
||||||
|
val isPointAvailable: Boolean
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue