Skip to content

Frontend Routes

StevenSuazo edited this page Nov 16, 2020 · 2 revisions

Splash Page

  • /
    • Header with search bar
    • Splash
    • Navigation bar on bottom

Session

  • /login
    • SessionForm
      • Page to allow existing users to log in
  • /signup
    • SessionForm
      • Page to allow new users to sign up

Photos

  • /photos/
    • PhotosIndex
      • Page to shows all photos on website, the explore page
  • /photos/:photo_id
    • PhotoPage
      • Page to that displays the photo with the matching index
  • /photos/:photo_id/edit
    • PhotoEditForm
      • Page to where to edit the photo with the matching index
  • /upload
    • UploadForm
      • Page where user Uploads a photo

Albums

  • /users/:user_id/albums
    • AlbumsIndex
      • Page to show all user's many albums
  • /albums/:album_id
    • AlbumPage
      • Page to that displays the photo album with the matching index
  • /albums/:album_id/edit
    • AlbumEditForm
      • Page to where to edit the photo album with the matching index

Tags

  • /tags/:tag_id
    • PhotosIndex
      • Page to view all photos with the matching tag index

Clone this wiki locally