커뮤니티 게시글 등록

- 유료 게시글 등록은 이미지가 있어야 등록이 가능하도록 수정
This commit is contained in:
Klaus 2024-05-23 01:28:30 +09:00
parent 685a3998a2
commit d241b4fa7a
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class CreatorCommunityService(
fun createCommunityPost(postImage: MultipartFile?, requestString: String, member: Member) { fun createCommunityPost(postImage: MultipartFile?, requestString: String, member: Member) {
val request = objectMapper.readValue(requestString, CreateCommunityPostRequest::class.java) val request = objectMapper.readValue(requestString, CreateCommunityPostRequest::class.java)
if (request.price > 0 && postImage != null) { if (request.price > 0 && postImage == null) {
throw SodaException("유료 게시글 등록을 위해서는 이미지가 필요합니다.") throw SodaException("유료 게시글 등록을 위해서는 이미지가 필요합니다.")
} }