You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autoflow-web-console/src/components/service/management/ExternalAuthControllerServi...

23 lines
541 B

import { request } from "@/components/service/index";
export const ExternalAuthControllerService = {
signIn: (id: string, password: string) => {
return request.post("/api/external-auth/signin", { id, password });
},
add: (token: string, edgePkgInfoVO: string, file: any) => {
return request.post("/api/external-auth/add", {
token,
edgePkgInfoVO,
file,
});
},
search: (id: string, token: string) => {
return request.get("/api/external-auth/edge-search", {
id,
token,
});
},
};