swsnu / swppfall2019

31 stars 23 forks source link

[HW3] comment post / put 시의 response 형식 #181

Open lookdeceline opened 4 years ago

lookdeceline commented 4 years ago

안녕하세요 조교님, 항상 친절한 도움 감사드립니다.

comment 를 post 하거나 put 할 때에 ( 즉 , POST api/article/:article_id/comment: 그리고 PUT api/comment/:comment_id: 시) response로 보내줘야 하는 형식이 어떻게 되나요?

{
                "id": comment id,
                "article": article id,
                "content": content,
                "author": comment author id
}

인가요 혹은

{
                "id": comment id,
                "content": content
}

인가요??

감사합니다.

ktaebum commented 4 years ago
{
                "id": comment id,
                "article": article id,
                "content": content,
                "author": comment author id
}

이렇게 보내주면 됩니다 (#156 과 동일합니다)

lookdeceline commented 4 years ago

앗 감사합니다!!