Feature requests
Community feature requests and voting.
POST
/api/community/featurescommunity:writeSubmit a feature request.
Request
{ title: string, description: string }Response
201 { id, title, description, authorId, status: 'open', createdAt, updatedAt }title 1-100 chars, description 1-1000 chars.
DELETE
/api/community/features/{id}community:write · admin/moderatorDelete a feature request.
Response
{ id }PATCH
/api/community/features/{id}/statuscommunity:write · adminChange a feature request's status.
Request
{ status: 'open'|'planned'|'shipped'|'declined' }Response
{ status }POST
/api/community/features/{id}/votecommunity:writeUpvote, downvote, or clear your vote on a feature request.
Request
{ value: 1 | -1 | 0 }Response
{ score: number, myVote: 1|-1|0 }