Slide 50
Slide 50 text
// router.js
Router.map(function() {
this.resource('artist', { path: '/artists/:artist_id' }, function() { });
this.resource('albums', { path: '/artists/:artist_id/albums' }, function() {
this.route('popular');
});
this.resource('album', { path: '/albums/:album_id' }, function() {
this.resource('comments', function() { });
});
});
&
function passed, routes generated
&
no function, no generated routes