Skip to content

Commit

Permalink
commentResponseDTO status add
Browse files Browse the repository at this point in the history
  • Loading branch information
Johyunik committed Dec 2, 2023
1 parent 0c220a6 commit beeaae3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public String insertBoard(@RequestHeader("decodedToken") String nickName, @Reque
}

// 게시글 수정
@PatchMapping(value = "/edit/{boardId}")
@PatchMapping(value = "/edit/{boardId}", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
@ResponseBody
public boolean patchBoard(
@RequestHeader("decodedToken") String nickName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public class CommentResponseDTO {

private String createdDate;
private String createdTime;

private int status;
private List<ReplyResponseDTO> replyList;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

public interface ImageRepository extends JpaRepository<ImageEntity, Integer> {

void deleteByBoardId(BoardEntity boardId);

}

0 comments on commit beeaae3

Please sign in to comment.