mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-29 22:02:57 +00:00
28 lines
720 B
TypeScript
28 lines
720 B
TypeScript
import SecurityClient from '~/utilities/SecurityClient';
|
|
|
|
/**
|
|
* This function deletes certain secrets from a certain project
|
|
* @param {string[]} secretIds - the ids of secrets that we want to be deleted
|
|
* @returns
|
|
*/
|
|
const deleteSecrets = async ({ secretIds }: { secretIds: string[] }) => {
|
|
return SecurityClient.fetchCall('/api/v2/secrets', {
|
|
method: 'DELETE',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({
|
|
secretIds
|
|
})
|
|
}
|
|
).then(async (res) => {
|
|
if (res && res.status == 200) {
|
|
return await res.json();
|
|
} else {
|
|
console.log('Failed to delete certain project secrets');
|
|
}
|
|
});
|
|
};
|
|
|
|
export default deleteSecrets;
|