woodpecker/web/src/lib/api/types/secret.ts
2022-10-27 04:21:07 +02:00

11 lines
186 B
TypeScript

import { WebhookEvents } from './webhook';
export type Secret = {
id: string;
name: string;
value: string;
event: WebhookEvents[];
image: string[];
plugins_only: string;
};