mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +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.
23 lines
620 B
JavaScript
23 lines
620 B
JavaScript
import SockJS from 'sockjs-client';
|
|
|
|
import local from 'utilities/local';
|
|
|
|
export default (client) => {
|
|
return {
|
|
queries: {
|
|
run: (campaignID) => {
|
|
return new Promise((resolve) => {
|
|
const socket = new SockJS(`${client.baseURL}/v1/fleet/results`, undefined, {});
|
|
|
|
socket.onopen = () => {
|
|
socket.send(JSON.stringify({ type: 'auth', data: { token: local.getItem('auth_token') } }));
|
|
socket.send(JSON.stringify({ type: 'select_campaign', data: { campaign_id: campaignID } }));
|
|
};
|
|
|
|
return resolve(socket);
|
|
});
|
|
},
|
|
},
|
|
};
|
|
};
|