-
Notifications
You must be signed in to change notification settings - Fork 0
Routes
Christopher Lee edited this page Dec 22, 2017
·
6 revisions
/signup/login-
/users/:userId- user profile -
/feed- photo feed, homepage (followed users) -
/discover- browse new/popular photos (unfollowed users) -
/photos/new- post a photo -
/photos/:photoId- show photo -
/photos/:photoId/edit- update a photo
-
GET /api/users- returns the user information for the User Search feature -
POST /api/users- sign up
-
GET /api/photos- returns all photos -
POST /api/photos- creates a photo -
PATCH /api/photos/:id- edit a photo -
DELETE /api/photos/:id- remove a photo
-
POST /api/photos/:photoId/likes- like a photo -
DELETE /api/photos/:photoId/likes- unlike a photo
-
POST /api/photos/:photoId/comments- create a comment - `PATCH /api/photos/:photoId/comments/commentId - edit a comment
-
DELETE /api/photos/:photoId/comments- remove a comment