In recent versions of Ember, a route may have a sub-item (for a namespace).
Router.map(function() { this.route('login'); this.resource('settings', { path: 'settings/:settings_id' }, function() { this.route('overview'); this.route('users', function(){ this.route('user', {path:':user_id'}); }); }); });
http://emberjs.jsbin.com/cutayuniga/1/edit?html,js,output
If you are in the old version, you will need to make the resource users.
Router.map(function() { this.route('login'); this.resource('settings', { path: 'settings/:settings_id' }, function() { this.route('overview'); this.resource('users', function(){ this.route('user', {path:':user_id'}); }); }); });
source share