this.resource("restaurants") this.resource("restaurant", { path: "/restaurants/:restaurant_id" }, function () { this.resource("bookings", function () { this.route("new"); }); this.resource("booking", { path: "/bookings/:booking_id" }); });