Nested routes of arbitrary-depth

Ember supports route globbing.

this.route('browse', { path: 'files/*files' });

Then, in your route you’ll get an array in the files attribute on params.

7 Likes