mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 08:13:39 +08:00
abc794c966
JSON-API specifies that multiple resources should be fetched with a comma-separated list of IDs, i.e. discussions/1,2,3,4. But this is problematic because if we do a findQuery with only one ID, then a single object will come back from the API where the serializer is expecting an array containing a single object. Instead, I’ve just implemented an ids “filter” on the discussions index API route (which is the default way that the adapter finds multiple IDs.)
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
import JsonApiSerializer from 'ember-json-api/json-api-serializer';
|
|
|
|
export default JsonApiSerializer.extend({
|
|
normalize: function(type, hash, property) {
|
|
var json = {};
|
|
|
|
for (var prop in hash) {
|
|
json[prop.camelize()] = hash[prop];
|
|
}
|
|
|
|
return this._super(type, json, property);
|
|
}
|
|
}); |