Add private key and passphrase fields to SFTP credentials (#1136)

*  Add private key and passphrase fields to credentials

*  Small improvement
This commit is contained in:
Ricardo Espinoza
2020-11-12 13:23:55 -05:00
committed by GitHub
parent f3874b5ed9
commit 042028fb5f
2 changed files with 24 additions and 0 deletions

View File

@@ -288,6 +288,8 @@ export class Ftp implements INodeType {
port: credentials.port as number,
username: credentials.username as string,
password: credentials.password as string,
privateKey: credentials.privateKey as string | undefined,
passphrase: credentials.passphrase as string | undefined,
});
} else {