From 4cb5ad08e740ae633bff1c2495fc6d59b86d2569 Mon Sep 17 00:00:00 2001 From: "L. Preston Sego III" Date: Fri, 30 Oct 2015 14:10:17 -0400 Subject: [PATCH] update ember docs with ember-data issue tracking urlForFindRecord / the inability to use query params on a single resource find --- docs/integrations/ember-and-json-api.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/integrations/ember-and-json-api.md b/docs/integrations/ember-and-json-api.md index 85cf3f8b..f0e6b5fb 100644 --- a/docs/integrations/ember-and-json-api.md +++ b/docs/integrations/ember-and-json-api.md @@ -34,6 +34,8 @@ export default DS.JSONAPIAdapter.extend({ // allows queries to be sent along with a findRecord // hopefully Ember / EmberData will soon have this built in + // ember-data issue tracked here: + // https://github.com/emberjs/data/issues/3596 urlForFindRecord(id, modelName, snapshot) { let url = this._super(...arguments); let query = Ember.get(snapshot, 'adapterOptions.query');