Create a new user
POST '/api/users/new'
Create a new article
POST '/api/articles/new'
Edit an article
PUT '/api/articles/:article/edit'
Example
PUT '/api/articles/5b46249f21e14c79bbf2002f/edit'
Delete an article
DELETE '/api/articles/:article/delete'
Example
PUT '/api/articles/5b46249f21e14c79bbf2002f/delete'
Return all articles (from all users) that contains the given tag(s) (1 or more)
GET '/api/articles/search_by_tags/:tags'
Example
GET '/api/articles/search_by_tags/microsoft,apple'
or
GET '/api/articles/search_by_tags/microsoft'