dnd-side-project / dnd-mentee-3rd-6-repo

dnd 3기 6조 문서
2 stars 4 forks source link

댓글, 대댓글 좋아요 API #87

Closed chaeyun17 closed 3 years ago

chaeyun17 commented 4 years ago

댓글 좋아요 [완료]

요청

POST /api/comment-likes

{
  "commentId": 1
}

응답

{
  "isLike": true
}

댓글 좋아요 취소 [완료]

요청

Delete /api/comment-likes?commentId=1

응답

{
  "isLike": false
}

대댓글 좋아요 [완료]

요청

POST /api/reply-likes

{
  "replyId": 1
}

응답

{
  "isLike": true
}

대댓글 좋아요 취소 [완료]

요청

Delete /api/reply-likes?replyId=1

응답

{
  "isLike": false
}