c5e9c15e49
* append -old to non-engine pki models * revert old file name * remove -engine from all pki component, model, adapter and serializer files * add md file explaining pki naming
16 lines
540 B
JavaScript
16 lines
540 B
JavaScript
import ApplicationSerializer from '../application';
|
|
|
|
export default class PkiKeySerializer extends ApplicationSerializer {
|
|
// rehydrate each keys model so all model attributes are accessible from the LIST response
|
|
normalizeItems(payload) {
|
|
if (payload.data) {
|
|
if (payload.data?.keys && Array.isArray(payload.data.keys)) {
|
|
return payload.data.keys.map((key) => ({ id: key, ...payload.data.key_info[key] }));
|
|
}
|
|
Object.assign(payload, payload.data);
|
|
delete payload.data;
|
|
}
|
|
return payload;
|
|
}
|
|
}
|