mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
c5535e0a1b
No issue - fixed "{{#each}}" helper in templates to use block syntax - fixed deprecated ember.controller getter/setter function to use new syntax - removed unnecessary pass-protect route view
21 lines
592 B
JavaScript
21 lines
592 B
JavaScript
import Ember from 'ember';
|
|
import DS from 'ember-data';
|
|
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.modelName),
|
|
data = this.serialize(record, options);
|
|
|
|
// Don't ever pass uuid's
|
|
delete data.uuid;
|
|
|
|
hash[root] = [data];
|
|
}
|
|
});
|
|
|
|
export default ApplicationSerializer;
|