mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
29 lines
669 B
JavaScript
29 lines
669 B
JavaScript
import SecurityClient from "~/utilities/SecurityClient";
|
|
|
|
import { PATH } from "../../../const";
|
|
|
|
/**
|
|
* This route gets integrations of a certain project (Heroku, etc.)
|
|
* @param {*} workspaceId
|
|
* @returns
|
|
*/
|
|
const getWorkspaceIntegrations = ({ workspaceId }) => {
|
|
return SecurityClient.fetchCall(
|
|
PATH + "/api/v1/workspace/" + workspaceId + "/integrations",
|
|
{
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
}
|
|
).then(async (res) => {
|
|
if (res.status == 200) {
|
|
return (await res.json()).integrations;
|
|
} else {
|
|
console.log("Failed to get the project integrations");
|
|
}
|
|
});
|
|
};
|
|
|
|
export default getWorkspaceIntegrations;
|