mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* clean up routes and useless components * component clean up * removed redux from routes * rename file * moved useDeepEffect hook with others * removed redux, fleet, app_constants dirs; added types to utilities * style cleanup * typo fix * removed unused ts-ignore comments * removed redux packages!!! * formatting * fixed typing for simple search function * updated frontend readme
29 lines
926 B
TypeScript
29 lines
926 B
TypeScript
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
import sendRequest from "services";
|
|
import endpoints from "utilities/endpoints";
|
|
|
|
export type ILoadHostDetailsExtension = "device_mapping" | "macadmins";
|
|
|
|
export default {
|
|
loadHostDetails: (deviceAuthToken: string) => {
|
|
const { DEVICE_USER_DETAILS } = endpoints;
|
|
const path = `${DEVICE_USER_DETAILS}/${deviceAuthToken}`;
|
|
|
|
return sendRequest("GET", path);
|
|
},
|
|
loadHostDetailsExtension: (
|
|
deviceAuthToken: string,
|
|
extension: ILoadHostDetailsExtension
|
|
) => {
|
|
const { DEVICE_USER_DETAILS } = endpoints;
|
|
const path = `${DEVICE_USER_DETAILS}/${deviceAuthToken}/${extension}`;
|
|
|
|
return sendRequest("GET", path);
|
|
},
|
|
refetch: (deviceAuthToken: string) => {
|
|
const { DEVICE_USER_DETAILS } = endpoints;
|
|
const path = `${DEVICE_USER_DETAILS}/${deviceAuthToken}/refetch`;
|
|
|
|
return sendRequest("POST", path);
|
|
},
|
|
};
|