Skip to content

Commit

Permalink
[Fix] 방명록 생성 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongmin39 authored Feb 19, 2024
1 parent d9848dd commit 566237d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class GuestBookController {
@ResponseStatus(value = HttpStatus.CREATED)
public ResponseEntity<?> createGuestBook(
@CurrentUser HttpServletRequest request,
@RequestPart CreateGuestBookRequestDto createGuestBookRequestDto
@RequestBody CreateGuestBookRequestDto createGuestBookRequestDto
) throws JsonProcessingException {
return guestBookService.createGuestBook(request, createGuestBookRequestDto);
}
Expand Down

0 comments on commit 566237d

Please sign in to comment.