Skip to content

frontend routes

Arebiter edited this page Oct 31, 2021 · 19 revisions

Frontend Routes and Components

'Auth'

  • /
    • splash
  • /login
    • SessionForm
  • /about
    • aboutPage
  • /signup
    • SessionForm
  • /teatimes
    • teaTimesIndex
      • teaTimesIndexItem
  • /teatimes#:cityName - filters through teaTimes based on city Id
    • teaTimesIndex
      • teaTimesIndexItem

'Protected'

  • /users/:userId or /profile

    • ProfileComponent
    • teaTimesIndex
      • teaTimesIndexItem
    • reviewsIndex
      • reviewsIndexItem
  • /teatimes/new

    • teaTimeForm
  • /teatimes/:teaTimeId

    • TeaTimeShow
  • /teaTimes/:teaTimeId/edit

    • TeaTimeForm
  • /reviews/new

    • reviewForm
  • /reviews/:reviewId

    • reviewShow
  • /review/:reviewId/edit

    • reviewForm
Clone this wiki locally