open-consul/ui-v2/app/adapters/proxy.js

18 lines
421 B
JavaScript

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