test #53

Merged
klaus merged 10 commits from test into main 2023-10-24 10:42:11 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit f45c6c7938 - Show all commits

View File

@ -176,6 +176,7 @@ class AudioContentService(
} else {
false
},
isOnlyRental = request.isOnlyRental,
isCommentAvailable = request.isCommentAvailable
)
audioContent.theme = theme

View File

@ -8,6 +8,7 @@ data class CreateAudioContentRequest(
val themeId: Long = 0,
val isAdult: Boolean = false,
val isGeneratePreview: Boolean = true,
val isOnlyRental: Boolean = false,
val isCommentAvailable: Boolean = false,
val type: AudioContentType = AudioContentType.INDIVIDUAL,
val childIds: List<Long>? = null,