Skip to content

Instantly share code, notes, and snippets.

@Floby
Created May 19, 2014 17:42
Show Gist options
  • Save Floby/b6ea37cbac7bb8206f94 to your computer and use it in GitHub Desktop.
Save Floby/b6ea37cbac7bb8206f94 to your computer and use it in GitHub Desktop.
Ember article
App.Router.map(function() {
this.resource('post', { path: '/post/:post_id' }, function() {
this.route('edit');
this.resource('comments', function() {
this.route('new');
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment