Compare commits

..

No commits in common. "be71e59be255d6f76364cdbec50ec2ad4eec2dbd" and "4d7753378fed4bab01604fd51359a21b618be39f" have entirely different histories.

1 changed files with 2 additions and 6 deletions

View File

@ -150,18 +150,14 @@ class AudioContentService(
val theme = themeQueryRepository.findThemeByIdAndActive(id = request.themeId)
?: throw SodaException("잘못된 테마입니다. 다시 선택해 주세요.")
if (request.price in 1..4) throw SodaException("콘텐츠의 최소금액은 5캔 입니다.")
if (request.price <= 4) throw SodaException("콘텐츠의 최소금액은 5캔 입니다.")
// DB에 값 추가
val audioContent = AudioContent(
title = request.title,
detail = request.detail,
type = request.type,
price = if (request.price > 0) {
request.price
} else {
0
},
price = request.price,
isAdult = request.isAdult,
isGeneratePreview = if (request.type == AudioContentType.INDIVIDUAL) {
request.isGeneratePreview