mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
26 lines
604 B
TypeScript
26 lines
604 B
TypeScript
import SecurityClient from '~/utilities/SecurityClient';
|
|
|
|
interface Props {
|
|
integrationAuthId: string;
|
|
}
|
|
|
|
const getIntegrationApps = ({ integrationAuthId }: Props) => {
|
|
return SecurityClient.fetchCall(
|
|
'/api/v1/integration-auth/' + integrationAuthId + '/apps',
|
|
{
|
|
method: 'GET',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
}
|
|
).then(async (res) => {
|
|
if (res && res.status == 200) {
|
|
return (await res.json()).apps;
|
|
} else {
|
|
console.log('Failed to get available apps for an integration');
|
|
}
|
|
});
|
|
};
|
|
|
|
export default getIntegrationApps;
|