mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
38 lines
777 B
TypeScript
38 lines
777 B
TypeScript
import SecurityClient from '~/utilities/SecurityClient';
|
|
|
|
interface Props {
|
|
name: string;
|
|
expiresIn: number;
|
|
}
|
|
|
|
/**
|
|
* This route adds an API key for the user
|
|
* @param {object} obj
|
|
* @param {string} obj.name - name of the API key
|
|
* @param {string} obj.expiresIn - how soon the API key expires in ms
|
|
* @returns
|
|
*/
|
|
const addAPIKey = ({
|
|
name,
|
|
expiresIn,
|
|
}: Props) => {
|
|
return SecurityClient.fetchCall('/api/v2/api-key/', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({
|
|
name,
|
|
expiresIn
|
|
})
|
|
}).then(async (res) => {
|
|
if (res && res.status == 200) {
|
|
return (await res.json());
|
|
} else {
|
|
console.log('Failed to add API key');
|
|
}
|
|
});
|
|
};
|
|
|
|
export default addAPIKey;
|