article와 comment의 POST/PUT의 경우 "updated article/comment (with its id) should be included in response's content as JSON format" 라고 나와 있는데,
그러면 PUT/POST request의 response에서 article의 경우 {"id": 1, "title": "title", "content":"content", "author_id":1} 그리고 comment의 경우 {"id": 1, "article_id": 1, "content":"content", "author_id":1} 이런 식의 JSON format으로 response가 와야 한다는 의미인가요?
안녕하세요, HW4 과제를 하던 중 의문점이 있어 질문드립니다.
.gitignore에 migration 폴더도 넣어주어야 하나요?
article와 comment의 POST/PUT의 경우 "updated article/comment (with its id) should be included in response's content as JSON format" 라고 나와 있는데, 그러면 PUT/POST request의 response에서 article의 경우 {"id": 1, "title": "title", "content":"content", "author_id":1} 그리고 comment의 경우 {"id": 1, "article_id": 1, "content":"content", "author_id":1} 이런 식의 JSON format으로 response가 와야 한다는 의미인가요?
감사합니다.