Frontend Routes - mmbarness/recordcollector GitHub Wiki

  • /
    • home page
  • /login
    • SessionForm
  • /signup
    • UserForm
  • /users/:userId
    • ProfileComponent
    • PurchasedAlbumsIndex
      • PurchasedAlbumIndexItem -this would be a redirect link to an album show page
  • /artists/:artistId - we havent ever routed things like this, but could it just be /artists/:artistName? Seems more typical
    • ArtistShowPageComponent
    • AlbumsIndex
      • AlbumIndexItem -this would be a redirect link to an album show page
  • /albums/:albumId
    • AlbumShowPageComponent
    • TracksIndex
      • TrackIndexItem
    • SupportersIndexComponent -css grid of user prof pics who've bought the album
      • SupporterIndexItem
  • /cart/:id
    • CartComponent