- View all users :
GET /users - View info :
GET /users/:user_id - Update info :
PUT /users/:user_id - View created posts :
GET /users/:user_id/posts - View created comments :
GET /users/:user_id/posts - View created reviews :
GET /users/:user_id/reviews - Register profile photo :
POST /users/:user_id/profile - Delete profile photo :
DELETE /users/:user_id/profile - Recommend games :
GET /users/:user_id/recommend
- View all games :
GET /games - View game :
GET /games/:game_id - Write game :
POST /games - Update game :
PUT /games/:game_id - Delete game :
DELETE /games/:game_id - Write review :
POST /games/:game_id/reviews - View review :
GET /games/:game_id/reviews - Update review :
PUT /games/:game_id/reviews/:review_id - Delete review :
DELETE /games/:game_id/reviews/:review_id - Favorites game :
POST /games/:game_id/favor - Check favorite :
GET /games/:game_id/favor - Delete favorte :
DELETE /games/:game_id/favor - Register advertising games :
POST /games/:game_id/advertising - Register affiliate games :
POST /games/:game_id/affiliate
- View all posts :
GET /posts - View post :
GET /posts/:post_id - Write post :
POST /posts/:postid - Update post :
PUT /posts/:post_id - Delete post :
DELETE /posts/:post_id - Recommend post :
POST /posts/:post_id/recommend - Disrecommend post :
POST /posts/:post_id/disrecommend - View comments :
GET /posts/:post_id/comments - Write comments :
POST /posts/:post_id/comments - Update comments :
UPDATE /posts/:post_id/comments/:comment_id - Delete comments :
DELETE /posts/:post_id/comments/:comment_id
- View all questions :
GET /admin/questions - Create questions :
POST /admin/questions - Reply questions :
POST /admin/questions/:question_id/reply - Push notification(Not implemented) :
POST /admin/push - Write notice :
POST /admin/notices - Get all notice :
GET /admin/notices - Delete notice :
DELETE /admin/notices/:notice_id