7a5a63d0e3
* Remove reference to stored license - Stored license was deprecated in 1.8 and from 1.11 all licenses will be auto loaded. * Added changelog * Remove test for stored license * Add defensive check in serializer
16 lines
575 B
JavaScript
16 lines
575 B
JavaScript
import ApplicationSerializer from './application';
|
|
|
|
export default ApplicationSerializer.extend({
|
|
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
|
|
let transformedPayload = { autoloaded: payload.data.autoloading_used, license_id: 'no-license' };
|
|
if (payload.data.autoloaded) {
|
|
transformedPayload = {
|
|
...transformedPayload,
|
|
...payload.data.autoloaded,
|
|
};
|
|
}
|
|
transformedPayload.id = transformedPayload.license_id;
|
|
return this._super(store, primaryModelClass, transformedPayload, id, requestType);
|
|
},
|
|
});
|