this is the repository for the backend and frontend of the hatch forums.
- GET
/
: forums home page. - POST
api/new/topic
: route create a new topic. user token should be in theToken
header. body should containtitle
,content
andcategory
(as an ID) attributes. - POST
api/new/post
: route create a new topic. user token should be in theToken
header. body should containcontent
andtopic
(as an ID) attributes. - GET
/category/<category>
: category page.<category>
is a unique ID applied to each forum category. - GET
/topic/<topic>
: topic page.<topic>
is a unique ID applied to each topic in the forums.