Skip to content

Frontend Routes

Tran Le edited this page Apr 26, 2021 · 6 revisions

User-Facing Routes

/

This page displays the splash page with navigation to log in and sign up.

  • GET /

/login

This page displays a login form

  • GET /login
  • POST /login
  • POST /demo

/logout

  • POST /logout

/signup

This page displays a sign up form.

  • GET /signup
  • POST /signup

/explore

This page explores all the photos shared from all users.

  • GET /explore

/users

This page displays the user's profile photostream and albums.

  • GET /users/:id/photos
  • GET /users/:id/albums

/photos

This page displays a specific photo that can be edited or deleted.

  • GET /photos/:id
  • POST /photos/:id/edit
  • POST /photos/:id/delete

/albums

This page displays a specific album that can be edited or deleted.

  • GET /albums/:id
  • POST /albums/:id/edit
  • POST /albums/:id/delete
Clone this wiki locally