Is there a way to have multiple dynamic segments with a single resource? My use case is to avoid letting the user hit index routes.
Example:
this.res
A possible solution for us was to use the following:
App.AlbumsIndexRoute = Ember.Route.extend({ redirect: function(){ this.transitionTo('dashboard'); } });