mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
33 lines
685 B
JavaScript
33 lines
685 B
JavaScript
import SecurityClient from "~/utilities/SecurityClient";
|
|
|
|
import { PATH } from "../../../const";
|
|
|
|
/**
|
|
* This function adds a user to a project
|
|
* @param {*} email
|
|
* @param {*} workspaceId
|
|
* @returns
|
|
*/
|
|
const addUserToWorkspace = (email, workspaceId) => {
|
|
return SecurityClient.fetchCall(
|
|
PATH + "/api/v1/workspace/" + workspaceId + "/invite-signup",
|
|
{
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify({
|
|
email: email,
|
|
}),
|
|
}
|
|
).then(async (res) => {
|
|
if (res.status == 200) {
|
|
return await res.json();
|
|
} else {
|
|
console.log("Failed to add a user to project");
|
|
}
|
|
});
|
|
};
|
|
|
|
export default addUserToWorkspace;
|