mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
7a68e3de65
- Support both /api/v1/fleet and /api/v1/kolide routes in server. - Add logging for use of deprecated routes. - Rename routes in frontend JS. - Rename routes and add notes in documentation.
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
import createRequestMock from 'test/mocks/create_request_mock';
|
|
import { packStub } from 'test/stubs';
|
|
|
|
export default {
|
|
addLabel: {
|
|
valid: (bearerToken, packID, labelID) => {
|
|
const endpoint = `/api/v1/fleet/packs/${packID}/labels/${labelID}`;
|
|
|
|
return createRequestMock({
|
|
bearerToken,
|
|
endpoint,
|
|
method: 'post',
|
|
response: { pack: packStub },
|
|
});
|
|
},
|
|
},
|
|
addQuery: {
|
|
valid: (bearerToken, packID, queryID) => {
|
|
const endpoint = `/api/v1/fleet/packs/${packID}/queries/${queryID}`;
|
|
|
|
return createRequestMock({
|
|
bearerToken,
|
|
endpoint,
|
|
method: 'post',
|
|
response: { pack: packStub },
|
|
});
|
|
},
|
|
},
|
|
create: {
|
|
valid: (bearerToken, params) => {
|
|
return createRequestMock({
|
|
bearerToken,
|
|
endpoint: '/api/v1/fleet/packs',
|
|
params,
|
|
method: 'post',
|
|
response: { pack: params },
|
|
responseStatus: 201,
|
|
});
|
|
},
|
|
},
|
|
destroy: {
|
|
valid: (bearerToken, pack) => {
|
|
return createRequestMock({
|
|
bearerToken,
|
|
endpoint: `/api/v1/fleet/packs/id/${pack.id}`,
|
|
method: 'delete',
|
|
response: {},
|
|
});
|
|
},
|
|
},
|
|
update: {
|
|
valid: (bearerToken, pack, params) => {
|
|
return createRequestMock({
|
|
bearerToken,
|
|
endpoint: `/api/v1/fleet/packs/${pack.id}`,
|
|
method: 'patch',
|
|
params,
|
|
response: { pack: { ...pack, ...params } },
|
|
});
|
|
},
|
|
},
|
|
};
|