- 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
556 B
TypeScript
11 lines
556 B
TypeScript
export { AdminHandler } from './admin.handler.ts';
|
|
export { ConnectionsHandler } from './connections.handler.ts';
|
|
export { ProjectsHandler } from './projects.handler.ts';
|
|
export { GroupsHandler } from './groups.handler.ts';
|
|
export { SecretsHandler } from './secrets.handler.ts';
|
|
export { PipelinesHandler } from './pipelines.handler.ts';
|
|
export { LogsHandler } from './logs.handler.ts';
|
|
export { WebhookHandler } from './webhook.handler.ts';
|
|
export { ActionsHandler } from './actions.handler.ts';
|
|
export { ActionLogHandler } from './actionlog.handler.ts';
|