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

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

댓글 CRUD API #85

Closed chaeyun17 closed 3 years ago

chaeyun17 commented 4 years ago

댓글 조회 [완료]

요청

GET /api/feed-comments?feedId=1 파라미터

특정 댓글 조회 [x]

요청

GET /api/feed-comments/1

응답

{
  "id": 1,
  "content": "넘 귀여운거 아닌가요?!",
  "numberOfLikes": 10,
  "numberOfReplies": 1,
  "createdDateTime": "2020-01-02T21:23:00",
  "timeDesc": "3시간 전",
  "author": {
    "id": 1,
    "nickName": "연탄범벅 연탄이네",
    "profileImg": "/img-files/3",
    "addressName": "수지구 풍덕천동"
  },
  "replies": [
    {
      "id": 1,
      "content": "까미랑 보리랑",
      "numberOfLikes": 3,
      "isLike": true,
      "createdDateTime": "2020-01-02T21:23:00",
      "timeDesc": "5시간 전",
      "author": {
        "id": 1,
        "nickName": "연탄범벅 연탄이네",
        "profileImg": "/img-files/3",
        "addressName": "수지구 풍덕천동"
      }
    }
  ]
}

댓글 수정 [완료]

요청

PUT /api/feed-comments/1

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

응답

{
  "id": 1,
  "content": "넘 귀여운거 아닌가요?!",
  "numberOfLikes": 0,
  "numberOfReplies": 0,
  "createdDateTime": "2020-01-02T21:23:00",
  "timeDesc": "3시간 전",
  "author": {
    "id": 1,
    "nickName": "연탄범벅 연탄이네",
    "profileImg": "/img-files/3",
    "addressName": "수지구 풍덕천동"
  },
  "replies": []
}