open-consul/ui-v2/app/adapters/discovery-chain.js

19 lines
428 B
JavaScript

import Adapter from './application';
// TODO: Update to use this.formatDatacenter()
export default Adapter.extend({
requestForQueryRecord: function(request, { dc, ns, index, id }) {
if (typeof id === 'undefined') {
throw new Error('You must specify an id');
}
return request`
GET /v1/discovery-chain/${id}?${{ dc }}
${{
...this.formatNspace(ns),
index,
}}
`;
},
});