Skip to content

Instantly share code, notes, and snippets.

@tomlagier
Created March 9, 2016 02:05
Show Gist options
  • Save tomlagier/254e79bb55f80f773851 to your computer and use it in GitHub Desktop.
Save tomlagier/254e79bb55f80f773851 to your computer and use it in GitHub Desktop.
/ -> SearchForm
/search?{QUERY} -> SearchResults
/profile/add -> GuestForm
/my-book/ -> MyBook
/dashboard -> JC Dashboard (RecentlyViewedGuests)
/profile/{GUEST_ID} -> GuestProfileDashboard
/profile/{GUEST_ID}/information -> GuestInformation
/profile/{GUEST_ID}/information/edit -> GuestInformationEdit
/profile/{GUEST_ID}/contact -> ContactInformation
/profile/{GUEST_ID}/contact/edit -> ContactInformationEdit
/profile/{GUEST_ID}/relationships -> DatesRelationships/Relationships
/profile/{GUEST_ID}/relationships/add -> CreateNewRelationship
/profile/{GUEST_ID}/relationships/{RELATIONSHIP_ID} -> DatesRelationships/Relationships (with relationship expanded)
/profile/{GUEST_ID}/relationships/{RELATIONSHIP_ID}/edit -> CreateNewRelationship (with relationship loaded)
/profile/{GUEST_ID}/dates -> DatesRelationships/Dates
/profile/{GUEST_ID}/dates/add -> CreateNewDate
/profile/{GUEST_ID}/dates/{DATE_ID} -> DatesRelationships/Dates (with date expanded)
/profile/{GUEST_ID}/dates/{DATE_ID}/edit -> CreateNewDate (with date loaded)
/profile/{GUEST_ID}/notes -> Notes
/profile/{GUEST_ID}/notes/add -> CreateNote
/profile/{GUEST_ID}/notes/relationship-comments -> NotesRelationshipComments
/profile/{GUEST_ID}/notes/relationship-comments/{RELATIONSHIP_ID}/edit -> NotesRelationshipCommentsEdit
{{ Why are relationship comments stored as notes? Can we redirect to edit relationship for the edit screen here? }}
/profile/{GUEST_ID}/jewelry-preferences -> JewelryPreferences
/profile/{GUEST_ID}/jewelry-preferences/birthstone -> JewelryPreferencesBirthstone
/profile/{GUEST_ID}/jewelry-preferences/brands -> JewelryPreferencesBrands
/profile/{GUEST_ID}/jewelry-preferences/diamond -> JewelryPreferencesDiamond
/profile/{GUEST_ID}/jewelry-preferences/metals -> JewelryPreferencesMetals
/profile/{GUEST_ID}/jewelry-preferences/ring-size -> JewelryPreferencesRingSize
/profile/{GUEST_ID}/jewelry-preferences/stone-type -> JewelryPreferencesStoneType
/profile/{GUEST_ID}/jewelry-preferences/watch-brands -> JewelryPreferencesWatchBrands
/profile/{GUEST_ID}/wishlist -> Wishlist
/profile/{GUEST_ID}/jewelry-box -> JewelryBox
/profile/{GUEST_ID}/audit -> Audit
/profile/{GUEST_ID}/transaction-history -> TransactionHistory
/profile/{GUEST_ID}/action-items -> ActionItems
/login -> NotLoggedIn
/logout -> Logout
/l;kjfal;skfj -> FourOhFour
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment