Skip to content

Instantly share code, notes, and snippets.

@jasonchester
Forked from tomlagier/routes.txt
Last active March 9, 2016 20:33
Show Gist options
  • Save jasonchester/6563ae357c03eb3786f3 to your computer and use it in GitHub Desktop.
Save jasonchester/6563ae357c03eb3786f3 to your computer and use it in GitHub Desktop.
Name Component Path
Index Route (JC Dashboard) /
Login -> NotLoggedIn /login
Logout /logout
FourOhFour /l;kjfal;skfj ->
Search Form /search
Search Results /search?q={QUERY}
My Book /my-book
Create Guest /guest/create
Create Guest (Draft) /guest/create?draft={DRAFT_NOTEID}
Guest Profile /guest/{GUEST_ID}
Guest Profile /guest/{GUEST_ID} -> GuestProfileDashboard
Guest Profile /guest/{GUEST_ID}/information -> GuestInformation
Guest Profile /guest/{GUEST_ID}/information/edit -> GuestInformationEdit
Guest Profile /guest/{GUEST_ID}/contact -> ContactInformation
Guest Profile /guest/{GUEST_ID}/contact/edit -> ContactInformationEdit
Guest Profile /guest/{GUEST_ID}/relationships -> DatesRelationships/Relationships
Guest Profile /guest/{GUEST_ID}/relationships/add -> CreateNewRelationship
Guest Profile /guest/{GUEST_ID}/relationships/{RELATIONSHIP_ID} -> DatesRelationships/Relationships (with relationship expanded)
Guest Profile /guest/{GUEST_ID}/relationships/{RELATIONSHIP_ID}/edit -> CreateNewRelationship (with relationship loaded)
Guest Profile /guest/{GUEST_ID}/dates -> DatesRelationships/Dates
Guest Profile /guest/{GUEST_ID}/dates/add -> CreateNewDate
Guest Profile /guest/{GUEST_ID}/dates/{DATE_ID} -> DatesRelationships/Dates (with date expanded)
Guest Profile /guest/{GUEST_ID}/dates/{DATE_ID}/edit -> CreateNewDate (with date loaded)
Guest Profile /guest/{GUEST_ID}/notes -> Notes
Guest Profile /guest/{GUEST_ID}/notes/add -> CreateNote
Guest Profile /guest/{GUEST_ID}/notes/relationship-comments -> NotesRelationshipComments
Guest Profile /guest/{GUEST_ID}/notes/relationship-comments/{RELATIONSHIP_ID}/edit -> NotesRelationshipCommentsEdit
Guest Profile {{ Why are relationship comments stored as notes? Can we redirect to edit relationship for the edit screen here? }}
Guest Profile /guest/{GUEST_ID}/jewelry-preferences -> JewelryPreferences
Guest Profile /guest/{GUEST_ID}/jewelry-preferences/birthstone -> JewelryPreferencesBirthstone
Guest Profile /guest/{GUEST_ID}/jewelry-preferences/brands -> JewelryPreferencesBrands
Guest Profile /guest/{GUEST_ID}/jewelry-preferences/diamond -> JewelryPreferencesDiamond
Guest Profile /guest/{GUEST_ID}/jewelry-preferences/metals -> JewelryPreferencesMetals
Guest Profile /guest/{GUEST_ID}/jewelry-preferences/ring-size -> JewelryPreferencesRingSize
Guest Profile /guest/{GUEST_ID}/jewelry-preferences/stone-type -> JewelryPreferencesStoneType
Guest Profile /guest/{GUEST_ID}/jewelry-preferences/watch-brands -> JewelryPreferencesWatchBrands
Guest Profile /guest/{GUEST_ID}/wishlist -> Wishlist
Guest Profile /guest/{GUEST_ID}/jewelry-box -> JewelryBox
Guest Profile /guest/{GUEST_ID}/audit -> Audit
Guest Profile /guest/{GUEST_ID}/transaction-history -> TransactionHistory
Guest Profile /guest/{GUEST_ID}/action-items -> ActionItems
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment