mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
43bf325800
closes #7014 - uses the `AjaxServiceSupport` mixin from `ember-ajax` to replace Ember Data's internal `ajax` method with our own ajax service - normalizes all error handling to use `ember-ajax` style errors - default to the `application/vnd.api+json` content-type so that we don't have a mix of urlencoded and plain JSON content - fix `normalizeErrorResponse` in our `ajax` service so that it doesn't add an empty `errors` array to payloads
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
import Ember from 'ember';
|
|
import ApplicationSerializer from 'ghost-admin/serializers/application';
|
|
import EmbeddedRecordsMixin from 'ember-data/serializers/embedded-records-mixin';
|
|
|
|
const {String: {pluralize}} = Ember;
|
|
|
|
export default ApplicationSerializer.extend(EmbeddedRecordsMixin, {
|
|
attrs: {
|
|
roles: {embedded: 'always'},
|
|
lastLoginUTC: {key: 'last_login'},
|
|
createdAtUTC: {key: 'created_at'},
|
|
updatedAtUTC: {key: 'updated_at'}
|
|
},
|
|
|
|
extractSingle(store, primaryType, payload) {
|
|
let root = this.keyForAttribute(primaryType.modelName);
|
|
let pluralizedRoot = pluralize(primaryType.modelName);
|
|
|
|
payload[root] = payload[pluralizedRoot][0];
|
|
delete payload[pluralizedRoot];
|
|
|
|
return this._super(...arguments);
|
|
},
|
|
|
|
normalizeSingleResponse(store, primaryModelClass, payload) {
|
|
let root = this.keyForAttribute(primaryModelClass.modelName);
|
|
let pluralizedRoot = pluralize(primaryModelClass.modelName);
|
|
|
|
if (payload[pluralizedRoot]) {
|
|
payload[root] = payload[pluralizedRoot][0];
|
|
delete payload[pluralizedRoot];
|
|
}
|
|
|
|
return this._super(...arguments);
|
|
}
|
|
});
|