Skip to content

Front End Routes

jvos415 edited this page Aug 1, 2022 · 4 revisions

Splash Page

  • Route "/"
  • Method "GET"

Events - Form

  • Route "/events/create"
  • Method "GET"

Events

  • Route "/events"
  • Method "POST"

User Dashboard

  • Route "/dashboard"
  • Method "GET"

Individual Event Details

  • Route "/events/:id"
  • Method "GET"

Edit A Event - Form

  • Route "/events/:id/edit"
  • Method "GET"

Edit A Event - Form

  • Route "/events/:id/edit"
  • Method "POST"

Buy Tickets - Form

  • Route "/events/:id/tickets"
  • Method "GET"

Purchase Tickets

  • Route "/tickets"
  • Method "POST"

Bookmarks

  • Route "/dashboard"
  • Method "GET"

Bookmarks

  • Route "/bookmarks"
  • Method "POST"

Custom 404 Page

  • Route "*(many different paths will result in rendering the 404 page)"
  • Method "GET"