Skip to content

Commit

Permalink
chore: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gusah009 committed Oct 13, 2023
1 parent a2ecaa7 commit 3c3b284
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ class BookManageController(
@PatchMapping("/{bookId}/thumbnail")
fun modifyBookThumbnail(
@PathVariable bookId: Long,
@ModelAttribute newThumbnail: MultipartFile?
@ModelAttribute thumbnail: MultipartFile?
): ResponseEntity<Void> {
bookManageService.modifyBookThumbnail(
bookId,
newThumbnail
thumbnail
)
return ResponseEntity.noContent().build()
}
Expand Down

0 comments on commit 3c3b284

Please sign in to comment.