mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 10:17:00 +02:00
9 lines
251 B
TypeScript
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';
|
|
}
|