Skip to content
This repository has been archived by the owner on Dec 25, 2020. It is now read-only.

Latest commit

 

History

History
55 lines (48 loc) · 796 Bytes

CommentController.md

File metadata and controls

55 lines (48 loc) · 796 Bytes

Comment


댓글 등록

메소드 경로
POST board/{categoryId}/{postNo}/comment

요청 헤더

{
   Content-Type: application/json
}

요청 바디 (ex) board/1/1

{
	"commentBody" : "1/2 댓글2"
}

응답 바디

{
    "statusEnum": "SUCCESS",
    "data": {
        "id": 20,
        "categoryId": 2,
        "userId": 1,
        "postNo": 2,
        "commentBody": "2/2 댓글2",
        "likesCount": 0
    },
    "msg": "댓글 등록 성공"
}

댓글 삭제 (Likes 포함)

메소드 경로
DELETE board/{categoryId}/{postNo}/{commentId}