Files
n8n-enterprise-unlocked/packages/cli/src/environments.ee/source-control/source-control.config.ts
कारतोफ्फेलस्क्रिप्ट™ 25a79ccf40 refactor(core): Use DI in source-control. add more tests (#12554)
2025-01-10 16:10:19 +01:00

9 lines
251 B
TypeScript

import { Config, Env } from '@n8n/config';
@Config
export class SourceControlConfig {
/** Default SSH key type to use when generating SSH keys. */
@Env('N8N_SOURCECONTROL_DEFAULT_SSH_KEY_TYPE')
defaultKeyPairType: 'ed25519' | 'rsa' = 'ed25519';
}