유저 행동 데이터, 포인트 추가 #309

Merged
klaus merged 25 commits from test into main 2025-04-24 02:44:58 +00:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 761d56f4bd - Show all commits

View File

@ -131,6 +131,10 @@ class CreatorAdminContentService(
audioContent.isAdult = request.isAdult
}
if (request.isPointAvailable != null) {
audioContent.isPointAvailable = request.isPointAvailable
}
if (request.isCommentAvailable != null) {
audioContent.isCommentAvailable = request.isCommentAvailable
}

View File

@ -7,5 +7,6 @@ data class UpdateCreatorAdminContentRequest(
val price: Int?,
val isAdult: Boolean?,
val isActive: Boolean?,
val isPointAvailable: Boolean?,
val isCommentAvailable: Boolean?
)