Is resource nesting the only way to enable multiple dynamic segments?
This seems to suggest that the answer is yes: From Ember Pre1 to Pre4: Multiple dynamic segments per route? Update: What is the allowed syntax for dynamic segments? ... but I just want to confirm. In my case, as a learning exercise, I'm building a calendar in Ember, with monthly displays. I need to be able to link from a given month to the previous month, and to the next month. So I'd like to be able to {{ linkTo calendar_month year month }} and this.transitionTo('calendarMonth', year, month) Wondering if this is feasible without using nested resources. I can get it working with something like