Skip to content

Commit

Permalink
#9 refactor: 보드 삭제API URL 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
xhaktmchl committed Nov 10, 2022
1 parent 24fdd37 commit 59b9ffe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public ApplicationResponse<BoardRes> updateBoard(@ModelAttribute @Validated Patc
@ApiResponse(code= 404, message = "요청한 유저가 호스트가 아닙니다."),
@ApiResponse(code = 4000 , message = "서버 오류입니다.")
})
@PatchMapping("/del")
@PatchMapping("/status")
public ApplicationResponse<BoardRes> deleteBoard(@RequestBody @Validated DeleteBoardReq deleteBoardReq){
return boardService.deleteBoard(deleteBoardReq);
}
Expand Down

0 comments on commit 59b9ffe

Please sign in to comment.