The back-end server for auth and social pages
[POST] /auth/login
Login user
[POST] /auth/signup
Signup user
[POST] /auth/reset-password
Reset user password
[GET] /user?page=1&perPage=50
Get a list of users
[GET] /user/:id
Get a user by id
[PUT] /user/:id
Update the current user
[DELETE] /user/:id
Delete the current user
[GET] /user/:id/favorites?page=1&perPage=50
Get a list of user favorites media
[POST] /user/:id/favorites
Create a new favorites media
[DELETE] /user/:id/favorites/:media_id
Delete the current favorites media
[GET] /favorites?page=1&perPage=50
Get a list of all favorites media
[GET] /category?page=1&perPage=50
Get a list of categories
[GET] /category/:id
Get a category by id
[POST] /category/
Create a new category
[PUT] /category/:id
Update the current category
[DELETE] /category/:id
Delete the current category