-
Notifications
You must be signed in to change notification settings - Fork 0
Frontend Routes
kdng edited this page Mar 11, 2022
·
17 revisions
- A navbar is displayed across all pages of the app, and contains links to:
- GET /
- GET /login
- GET /sign-up
- GET /movies
- GET /watchlists
- GET /watchlists/watched
- GET /watchlists/watching
- GET /watchlists/to-watch
- This page will display all movies in the movie list
- GET /movies
- This page will get the user to a specific movie when clicked
- Route to specific movie
- GET /movies/:id
- POST /movies/:id/reviews/:id
- PUT /movies/:id/reviews/:id
- DELETE /movies/:id/reviews/:id
- Route to specific movie
- This page will get the user to their own watchlist when logged in
- Route to watchlist
- GET /watchlists
- Route to watchlist
- This route will get the user to their specific watchlist when logged in
- Routes to specific watchlist
- GET /watchlists/watched
- GET /watchlists/watching
- GET /watchlists/to-watch
- Routes to specific watchlist