2e197fcfcd
* initial setup for issuers toolbar and some slight changes to roles model after discussion with design. * wip * wip ... :/ * finalizes serializer and linkedblock iteration of is_default * clean up * fix * forgot this bit * pr comments amendments: * small PR comment changes
16 lines
551 B
JavaScript
16 lines
551 B
JavaScript
import ApplicationSerializer from '../application';
|
|
|
|
export default class PkiIssuerEngineSerializer extends ApplicationSerializer {
|
|
// rehydrate each issuer 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;
|
|
}
|
|
}
|