27bb03bbc0
* adding copyright header * fix fmt and a test
30 lines
872 B
JavaScript
30 lines
872 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import ApplicationSerializer from './application';
|
|
|
|
export default ApplicationSerializer.extend({
|
|
normalizeList(payload) {
|
|
const data = payload.data.keys
|
|
? payload.data.keys.map((key) => ({
|
|
path: key,
|
|
// remove the trailing slash from the id
|
|
id: key.replace(/\/$/, ''),
|
|
}))
|
|
: payload.data;
|
|
|
|
return data;
|
|
},
|
|
|
|
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
|
|
const nullResponses = ['deleteRecord', 'createRecord'];
|
|
const cid = (id || payload.id || '').replace(/\/$/, '');
|
|
const normalizedPayload = nullResponses.includes(requestType)
|
|
? { id: cid, path: cid }
|
|
: this.normalizeList(payload);
|
|
return this._super(store, primaryModelClass, normalizedPayload, id, requestType);
|
|
},
|
|
});
|