I have a list of products that will be loaded under the /products route, from there you can navigate to a single product under the /products/:product_id. This is my models and the route:
var Product = DS.Model.extend({
  page_title: DS.attr('string'),
  image: DS.attr('string')
});
var ProductComment = DS.Model.extend({
  contents: DS.attr('string')
});
var ProductRoute = Ember.Route.extend({
  model: function(params) {
    return App.Product.find(params.product_id)
  },
  setupController: function(controller, model) {
    controller.set('content', model);
  }
});
On the product page I want to load the products and additionally the comments for a product. As I use an external Api I cant load the id of the comments into the product model. So now I want to load the comments in to the ProductsController. I tried like described in this SO but it doesn't work. I'm using EmberDatas RESTAdapter.
 
    