Skip to content

Commit

Permalink
[api-server-v1] fix: 텍스트 블록 수정 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gdtknight committed Oct 5, 2023
1 parent d28bcad commit 6ecca62
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public ApiResponse.Result<BlockResponseDTO> modifyTextBlock(
@AuthenticationPrincipal CustomUserDetails loginUser,
@PathVariable UUID pageId,
@PathVariable UUID blockId,
TextBlockDTO textBlockDTO) {
@RequestBody TextBlockDTO textBlockDTO) {

log.info("[TextBlockController] Login User : {}", loginUser);
log.info("[TextBlockController] Current Page Id : {}", pageId);

Expand Down

0 comments on commit 6ecca62

Please sign in to comment.