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