mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat(HTTP Request Node): Option to provide SSL Certificates in Http Request Node (#9125)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
54
packages/nodes-base/credentials/HttpSslAuth.credentials.ts
Normal file
54
packages/nodes-base/credentials/HttpSslAuth.credentials.ts
Normal file
@@ -0,0 +1,54 @@
|
||||
/* eslint-disable n8n-nodes-base/cred-class-name-unsuffixed */
|
||||
/* eslint-disable n8n-nodes-base/cred-class-field-name-unsuffixed */
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class HttpSslAuth implements ICredentialType {
|
||||
name = 'httpSslAuth';
|
||||
|
||||
displayName = 'SSL Certificates';
|
||||
|
||||
documentationUrl = 'httpRequest';
|
||||
|
||||
icon = 'node:n8n-nodes-base.httpRequest';
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'CA',
|
||||
name: 'ca',
|
||||
type: 'string',
|
||||
description: 'Certificate Authority certificate',
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Certificate',
|
||||
name: 'cert',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Private Key',
|
||||
name: 'key',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Passphrase',
|
||||
name: 'passphrase',
|
||||
type: 'string',
|
||||
description: 'Optional passphrase for the private key, if the private key is encrypted',
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user