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

Latest commit

 

History

History
30 lines (28 loc) · 482 Bytes

LikesController.md

File metadata and controls

30 lines (28 loc) · 482 Bytes

Likes (좋아요 or 공감)


Likes 등록 및 해제

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

응답 바디 (ex) board/1/1/6


{
    "statusEnum": "SUCCESS",
    "data": {
        "id": 6,
        "categoryId": 1,
        "postNo": 1,
        "userId": 5,
        "commentBody": "1/1 댓글1",
        "likesCount": 2
    },
    "msg": "좋아요"
}