Skip to content

Commit

Permalink
Merge pull request #115 from TripComeTrue/feature/#12-set-up-placeRev…
Browse files Browse the repository at this point in the history
…iew-comment

[docs] place_review_comment.http 파일 생성
  • Loading branch information
meena2003 authored Jan 25, 2024
2 parents fdaf3c3 + d974c62 commit 347be90
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/test/http/comment/place_review_comment.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
### 여행지 리뷰 댓글 달기
POST localhost:8080/v1/places/reviews/1/comments
Content-Type: application/json

{
"content": "첫 댓글입니다 ㅎㅎ"
}


### 여행지 리뷰 대댓글 달기
POST localhost:8080/v1/places/reviews/comments/1/reply-comments
Content-Type: application/json

{
"content": "대댓글 입니다! ㅎㅎ"
}


### 여행지 리뷰 댓글 / 대댓글 삭제
DELETE localhost:8080/v1/places/reviews/comments/1

0 comments on commit 347be90

Please sign in to comment.