- Add Edit and Pause/Resume actions to connections table - Add delete confirmation modal to secrets table - Add 'paused' status to connections with full backend support - Skip paused connections in health checks and secrets scanning - Add global ActionLog service with filesystem persistence - Instrument all mutation handlers (connections, secrets, pipelines) with action logging - Add Action Log view with entity type filtering to dashboard
12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
export type TProviderType = 'gitea' | 'gitlab';
|
|
|
|
export interface IProviderConnection {
|
|
id: string;
|
|
name: string;
|
|
providerType: TProviderType;
|
|
baseUrl: string;
|
|
token: string;
|
|
createdAt: number;
|
|
status: 'connected' | 'disconnected' | 'error' | 'paused';
|
|
}
|