Skip to content

Instantly share code, notes, and snippets.

@darthdeus
Created January 15, 2013 19:40
Show Gist options
  • Save darthdeus/4541354 to your computer and use it in GitHub Desktop.
Save darthdeus/4541354 to your computer and use it in GitHub Desktop.
this.resource("posts", { path: "/posts" }, function() {
this.resource("show", { path: "/:post_id" });
});
this.resource("posts", { path: "/posts" }, function() {
this.resource("post", { path: "/:post_id" });
});
this.resource("posts", { path: "/posts" });
this.resource("post", { path: "/posts/:post_id" });
@wagenet
Copy link

wagenet commented Jan 15, 2013

@walter does your posts template have an outlet in it? If not, Ember will find the closest outlet it can, which will be the one in application.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment