mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
18 lines
528 B
TypeScript
18 lines
528 B
TypeScript
|
import { Secret } from 'docker-types/generated/1.41';
|
||
|
|
||
|
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
||
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
||
|
|
||
|
import { buildDockerProxyUrl } from '../buildDockerProxyUrl';
|
||
|
|
||
|
export async function removeSecret(
|
||
|
environmentId: EnvironmentId,
|
||
|
id: NonNullable<Secret['ID']>
|
||
|
) {
|
||
|
try {
|
||
|
await axios.delete(buildDockerProxyUrl(environmentId, 'secrets', id));
|
||
|
} catch (err) {
|
||
|
throw parseAxiosError(err, 'Unable to remove secret');
|
||
|
}
|
||
|
}
|