Files
infisical/frontend/pages/api/workspace/getWorkspaces.ts
2022-12-06 05:53:34 +09:00

26 lines
616 B
TypeScript

import { Workspaces } from "types/workspaces";
import SecurityClient from "~/utilities/SecurityClient";
/**
* This route lets us get the workspaces of a certain user
* @returns
*/
const getWorkspaces = () => {
return SecurityClient.fetchCall("/api/v1/workspace", {
method: "GET",
headers: {
"Content-Type": "application/json",
},
}).then(async (res) => {
if (res?.status == 200) {
const data = (await res.json()) as unknown as { workspaces: Workspaces };
return data.workspaces;
}
throw new Error("Failed to get projects");
});
};
export default getWorkspaces;