fleet/frontend/services/entities/spec.ts
Martavis Parker 384c987389
Removed all traces of Redux from the app! (#5287)
* 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
2022-04-22 09:45:35 -07:00

24 lines
621 B
TypeScript

/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import sendRequest from "services";
import endpoints from "utilities/endpoints";
import { IEnrollSecret } from "interfaces/enroll_secret";
interface IEnrollSecretSpec {
spec: {
secrets: IEnrollSecret[];
};
}
export default {
getEnrollSecretSpec: () => {
const { GLOBAL_ENROLL_SECRETS } = endpoints;
return sendRequest("GET", GLOBAL_ENROLL_SECRETS);
},
applyEnrollSecretSpec: (spec: IEnrollSecretSpec) => {
const { GLOBAL_ENROLL_SECRETS } = endpoints;
return sendRequest("POST", GLOBAL_ENROLL_SECRETS, spec);
},
};