open-consul/ui/packages/consul-ui/app/adapters/auth-method.js

29 lines
587 B
JavaScript
Raw Normal View History

import Adapter from './application';
export default class AuthMethodAdapter extends Adapter {
requestForQuery(request, { dc, ns, index, id }) {
return request`
GET /v1/acl/auth-methods?${{ dc }}
${{
...this.formatNspace(ns),
index,
}}
`;
}
requestForQueryRecord(request, { dc, ns, index, id }) {
if (typeof id === 'undefined') {
throw new Error('You must specify an id');
}
return request`
GET /v1/acl/auth-method/${id}?${{ dc }}
${{
...this.formatNspace(ns),
index,
}}
`;
}
}