Fix findRecord to work without passing a snapshot

We use adapter.findRecord to fetch repo by slug. Using it this way was
broken with one of the ember-data releases. This commit brings back the
old behaviour.
This commit is contained in:
Piotr Sarnacki 2016-03-02 18:28:21 +01:00
parent ab0a2af471
commit 5dc64c4937
2 changed files with 12 additions and 0 deletions

View File

@ -47,5 +47,11 @@ export default ActiveModelAdapter.extend({
}
return this._super(...arguments);
},
// this can be removed once this PR is merged and live:
// https://github.com/emberjs/data/pull/4204
findRecord(store, type, id, snapshot) {
return this.ajax(this.buildURL(type.modelName, id, snapshot, 'findRecord'), 'GET');
}
});

View File

@ -54,5 +54,11 @@ export default RESTAdapter.extend({
pathForType: function(modelName, id) {
var underscored = Ember.String.underscore(modelName);
return id ? underscored : Ember.String.pluralize(underscored);
},
// this can be removed once this PR is merged and live:
// https://github.com/emberjs/data/pull/4204
findRecord(store, type, id, snapshot) {
return this.ajax(this.buildURL(type.modelName, id, snapshot, 'findRecord'), 'GET');
}
});