mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
25 lines
627 B
JavaScript
25 lines
627 B
JavaScript
import { PATH } from "~/const";
|
|
import SecurityClient from "~/utilities/SecurityClient";
|
|
|
|
/**
|
|
* This function removes a certain member from a certain workspace
|
|
* @param {*} membershipId
|
|
* @returns
|
|
*/
|
|
const deleteUserFromWorkspace = (membershipId) => {
|
|
return SecurityClient.fetchCall(PATH + "/api/v1/membership/" + membershipId, {
|
|
method: "DELETE",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
}).then(async (res) => {
|
|
if (res.status == 200) {
|
|
return res;
|
|
} else {
|
|
console.log("Failed to delete a user from a project");
|
|
}
|
|
});
|
|
};
|
|
|
|
export default deleteUserFromWorkspace;
|