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

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

대댓글 API #86

Closed chaeyun17 closed 3 years ago

chaeyun17 commented 4 years ago

대댓글 조회 [ 사용 안함]

요청

GET /api/replies?commentId=1 파라미터

대댓글 삭제 [완료]

요청

DELETE /api/replies/1

응답

200 OK

{
  "id": 1,
  "content": null,
  "numberOfLikes": 0,
  "isLike": false,
  "createdDateTime": null,
  "timeDesc": "",
  "author": null
}

특정 대댓글 조회[x]

요청

GET /api/replies/1

응답

{
  "id": 1,
  "content": "까미랑 보리랑",
  "numberOfLikes": 3,
  "isLike": true,
  "createdDateTime": "2020-01-02T21:23:00",
  "timeDesc": "5시간 전",
  "author": {
    "id": 1,
    "nickName": "연탄범벅 연탄이네",
    "profileImg": "/img-files/3",
    "addressName": "수지구 풍덕천동"
  }
}

대댓글 수정[x]

요청

PUT /api/replies/1

{
  "content": "넘 귀여운거 아닌가요?!"
}

응답

{
  "id": 1,
  "content": "까미랑 보리랑",
  "numberOfLikes": 3,
  "isLike": true,
  "createdDateTime": "2020-01-02T21:23:00",
  "timeDesc": "5시간 전",
  "author": {
    "id": 1,
    "nickName": "연탄범벅 연탄이네",
    "profileImg": "/img-files/3",
    "addressName": "수지구 풍덕천동"
  }
}