mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 06:16:08 +00:00
9d21736e9f
* Add copyright headers to UI files * Ensure copywrite file ignores external libs
24 lines
591 B
JavaScript
24 lines
591 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Serializer from './application';
|
|
import { PRIMARY_KEY, SLUG_KEY } from 'consul-ui/models/discovery-chain';
|
|
|
|
export default class DiscoveryChainSerializer extends Serializer {
|
|
primaryKey = PRIMARY_KEY;
|
|
slugKey = SLUG_KEY;
|
|
|
|
respondForQueryRecord(respond, query) {
|
|
return super.respondForQueryRecord(function (cb) {
|
|
return respond(function (headers, body) {
|
|
return cb(headers, {
|
|
...body,
|
|
[SLUG_KEY]: body.Chain[SLUG_KEY],
|
|
});
|
|
});
|
|
}, query);
|
|
}
|
|
}
|