mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
33 lines
639 B
JavaScript
33 lines
639 B
JavaScript
import SecurityClient from "~/utilities/SecurityClient";
|
|
|
|
import { PATH } from "../../../const";
|
|
|
|
/**
|
|
* This route lets us rename a certain org.
|
|
* @param {*} req
|
|
* @param {*} res
|
|
* @returns
|
|
*/
|
|
const renameOrg = (orgId, newOrgName) => {
|
|
return SecurityClient.fetchCall(
|
|
PATH + "/api/v1/organization/" + orgId + "/name",
|
|
{
|
|
method: "PATCH",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify({
|
|
name: newOrgName,
|
|
}),
|
|
}
|
|
).then(async (res) => {
|
|
if (res.status == 200) {
|
|
return res;
|
|
} else {
|
|
console.log("Failed to rename an organization");
|
|
}
|
|
});
|
|
};
|
|
|
|
export default renameOrg;
|