콘텐츠 구매 - 소장만 추가 #234

Merged
klaus merged 7 commits from test into main 2024-11-08 12:40:30 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit c46d6621ec - Show all commits

View File

@ -588,6 +588,7 @@ class AudioContentService(
isMosaic = audioContent.isAdult && member.auth == null, isMosaic = audioContent.isAdult && member.auth == null,
isOnlyRental = audioContent.isOnlyRental, isOnlyRental = audioContent.isOnlyRental,
existOrdered = isExistsAudioContent, existOrdered = isExistsAudioContent,
purchaseOption = audioContent.purchaseOption,
orderType = orderType, orderType = orderType,
remainingTime = remainingTime, remainingTime = remainingTime,
creatorOtherContentList = creatorOtherContentList, creatorOtherContentList = creatorOtherContentList,

View File

@ -23,6 +23,7 @@ data class GetAudioContentDetailResponse(
val isMosaic: Boolean, val isMosaic: Boolean,
val isOnlyRental: Boolean, val isOnlyRental: Boolean,
val existOrdered: Boolean, val existOrdered: Boolean,
val purchaseOption: PurchaseOption,
val orderType: OrderType?, val orderType: OrderType?,
val remainingTime: String?, val remainingTime: String?,
val creatorOtherContentList: List<OtherContentResponse>, val creatorOtherContentList: List<OtherContentResponse>,