open-vault/ui/app/serializers/policy.js

19 lines
609 B
JavaScript
Raw Normal View History

2018-04-03 14:16:57 +00:00
import ApplicationSerializer from './application';
export default ApplicationSerializer.extend({
primaryKey: 'name',
normalizePolicies(payload) {
const data = payload.data.keys ? payload.data.keys.map(name => ({ name })) : payload.data;
return data;
},
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
const nullResponses = ['deleteRecord'];
let normalizedPayload = nullResponses.includes(requestType)
? { name: id }
: this.normalizePolicies(payload);
return this._super(store, primaryModelClass, normalizedPayload, id, requestType);
},
});