Ghost/ghost/admin/app/serializers/application.js
2015-11-30 12:23:47 -06:00

22 lines
557 B
JavaScript

import Ember from 'ember';
import DS from 'ember-data';
const {RESTSerializer} = DS;
export default RESTSerializer.extend({
serializeIntoHash(hash, type, record, options) {
// Our API expects an id on the posted object
options = options || {};
options.includeId = true;
// We have a plural root in the API
let root = Ember.String.pluralize(type.modelName);
let data = this.serialize(record, options);
// Don't ever pass uuid's
delete data.uuid;
hash[root] = [data];
}
});