Posts
Free-form community posts and voting.
POST
/api/community/postscommunity:writeCreate a post.
Request
{ title: string, body: string }Response
201 { id, title, body, authorId, createdAt }title 1-100 chars, body 1-2000 chars.
POST
/api/community/posts/{id}/votecommunity:writeUpvote, downvote, or clear your vote on a post.
Request
{ value: 1 | -1 | 0 }Response
{ score: number, myVote: 1|-1|0 }