mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
OAuth2 support
This commit is contained in:
@@ -52,14 +52,21 @@ export class PipedriveTrigger implements INodeType {
|
||||
{
|
||||
name: 'pipedriveApi',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
authentication: [
|
||||
'accessToken',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'httpBasicAuth',
|
||||
name: 'pipedriveOAuth2Api',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
authentication: [
|
||||
'basicAuth',
|
||||
'oAuth2',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -80,15 +87,16 @@ export class PipedriveTrigger implements INodeType {
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Basic Auth',
|
||||
value: 'basicAuth'
|
||||
name: 'Access Token',
|
||||
value: 'accessToken'
|
||||
},
|
||||
{
|
||||
name: 'None',
|
||||
value: 'none'
|
||||
name: 'OAuth2',
|
||||
value: 'oAuth2'
|
||||
},
|
||||
|
||||
],
|
||||
default: 'none',
|
||||
default: 'accessToken',
|
||||
description: 'If authentication should be activated for the webhook (makes it more scure).',
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user