- 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
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
export * from './admin.ts';
|
|
export * from './connections.ts';
|
|
export * from './projects.ts';
|
|
export * from './groups.ts';
|
|
export * from './secrets.ts';
|
|
export * from './pipelines.ts';
|
|
export * from './logs.ts';
|
|
export * from './webhook.ts';
|
|
export * from './actions.ts';
|
|
export * from './actionlog.ts';
|