14.9.4 댓글 삭제하기
마지막으로 구현할 댓글 API는 삭제하는 것입니다.
api/comment/config/route.json
{
"routes": [
(...),
{
"method": "DELETE",
"path": "/articles/:articleId/comments/:id",
"handler": "comment.delete",
"config": {
"policies": []
}
}
]
}
이번 API의 경로는 수정 API와 동일하며, 메서드를 DELETE로 사용합니다.