게시글 단일죠회
/api/posts/{postId}
{
"title": "title",
”content": "content",
”heartCnt": Long,
"username": "username",
"isHearted": Boolean,
”createdAt": YYYY-MM-DD T18:02:33.358744,
”commentList": [commentList]
}
전체 게시글 목록죠회
/api/posts
[
{”title": ”title",
”content": "content",
”username": "username",
”heartCnt": Long,
”isHearted": Boolean,
”createdAt": ”YYYY-MM-DD T19:18:19.424091"}
]
게시글 등록
/api/posts
{”title” : title, “coentent” : content}
게시글 등록완료 여부
게시글 수정
/api/posts/{posdId}
{”title” : title, “content” : content}
게시글 수정확인 여부