20 lines
641 B
JavaScript
20 lines
641 B
JavaScript
|
import ApplicationSerializer from './application';
|
||
|
|
||
|
export default ApplicationSerializer.extend({
|
||
|
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
|
||
|
if (payload.data.masking_character) {
|
||
|
payload.data.masking_character = String.fromCharCode(payload.data.masking_character);
|
||
|
}
|
||
|
return this._super(store, primaryModelClass, payload, id, requestType);
|
||
|
},
|
||
|
|
||
|
serialize() {
|
||
|
let json = this._super(...arguments);
|
||
|
if (json.template && Array.isArray(json.template)) {
|
||
|
// Transformations should only ever have one template
|
||
|
json.template = json.template[0];
|
||
|
}
|
||
|
return json;
|
||
|
},
|
||
|
});
|