You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui/packages/consul-ui/app/serializers/partition.js

25 lines
596 B

import Serializer from './application';
import { PRIMARY_KEY, SLUG_KEY } from 'consul-ui/models/partition';
export default class PartitionSerializer extends Serializer {
primaryKey = PRIMARY_KEY;
slugKey = SLUG_KEY;
respondForQuery(respond, query, data, modelClass) {
return super.respondForQuery(
cb =>
respond((headers, body) => {
return cb(
headers,
body.map(item => {
item.Partition = '*';
item.Namespace = '*';
return item;
})
);
}),
query
);
}
}