affe6743e5
refs: https://github.com/TryGhost/Team/issues/1145 - this should allow us to remove the /products endpoint in v5 It avoids: - `kg-product-card`, that really is meant to say product - `product-cadence` on offers Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
28 lines
735 B
JavaScript
28 lines
735 B
JavaScript
import BaseSerializer from './application';
|
|
import {underscore} from '@ember/string';
|
|
|
|
export default BaseSerializer.extend({
|
|
embed: true,
|
|
|
|
include(/*request*/) {
|
|
let includes = [];
|
|
|
|
includes.push('tier');
|
|
|
|
return includes;
|
|
},
|
|
|
|
keyForEmbeddedRelationship(relationshipName) {
|
|
if (relationshipName === 'tier') {
|
|
return 'tier';
|
|
}
|
|
|
|
return underscore(relationshipName);
|
|
}
|
|
|
|
// NOTE: serialize() is not called for embedded records, serialization happens
|
|
// on the primary resource, in this case `member`
|
|
// TODO: extract subscription serialization and call it here too if we start
|
|
// to treat subscriptions as their own non-embedded resource
|
|
});
|