mirror of
https://github.com/status-im/consul.git
synced 2025-01-19 10:15:06 +00:00
e8b7c44087
* ui: Upgrade ember-data models to use native classes/decorators * ui: Update remaining ember-data imports * ui: Move ember-data Adapters to use native classes * ui: Upgrade serializers to native classes/decorators * ui: remove meta from roles, they never had it to start with
24 lines
477 B
JavaScript
24 lines
477 B
JavaScript
import Serializer from './application';
|
|
|
|
export default class DcSerializer extends Serializer {
|
|
primaryKey = 'Name';
|
|
|
|
respondForQuery(respond, query) {
|
|
return respond(function(headers, body) {
|
|
return body;
|
|
});
|
|
}
|
|
|
|
normalizePayload(payload, id, requestType) {
|
|
switch (requestType) {
|
|
case 'query':
|
|
return payload.map(item => {
|
|
return {
|
|
[this.primaryKey]: item,
|
|
};
|
|
});
|
|
}
|
|
return payload;
|
|
}
|
|
}
|