mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
a9608d77ae
Previously, the exports were somewhat random with some files declaring local variables then immediately exporting them, and others simply doing the work needed in the export itself.
19 lines
534 B
JavaScript
19 lines
534 B
JavaScript
var ApplicationSerializer = DS.RESTSerializer.extend({
|
|
serializeIntoHash: function (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
|
|
var root = Ember.String.pluralize(type.typeKey),
|
|
data = this.serialize(record, options);
|
|
|
|
// Don't ever pass uuid's
|
|
delete data.uuid;
|
|
|
|
hash[root] = [data];
|
|
}
|
|
});
|
|
|
|
export default ApplicationSerializer;
|