Skip to content

Commit

Permalink
refactor :: null 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Feb 27, 2024
1 parent d6cc265 commit 44069f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ProjectController(
@ResponseStatus(HttpStatus.CREATED)
fun register(
@RequestPart("logo", required = true) logo: MultipartFile,
@RequestPart("projectImage") projectImage: List<MultipartFile>,
@RequestPart("projectImage") projectImage: List<MultipartFile>?,
@RequestPart("project") project: String
): ProjectDetailResponse {
val mapper = ObjectMapper().registerModule(KotlinModule())
Expand Down

0 comments on commit 44069f4

Please sign in to comment.