mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
27 lines
598 B
JavaScript
27 lines
598 B
JavaScript
import SecurityClient from "~/utilities/SecurityClient.js";
|
|
|
|
/**
|
|
* This function fetches the bot for a project
|
|
* @param {Object} obj
|
|
* @param {String} obj.workspaceId
|
|
* @returns
|
|
*/
|
|
const getBot = async ({ workspaceId }) => {
|
|
return SecurityClient.fetchCall(
|
|
"/api/v1/bot/" + workspaceId,
|
|
{
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
}
|
|
}
|
|
).then(async (res) => {
|
|
if (res.status == 200) {
|
|
return await res.json();
|
|
} else {
|
|
console.log("Failed to get bot for project");
|
|
}
|
|
});
|
|
};
|
|
|
|
export default getBot; |