mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
🐛 Fix credential bug with parameters which have the same name
This commit is contained in:
@@ -29,7 +29,7 @@ export class ZendeskOAuth2Api implements ICredentialType {
|
||||
displayName: 'Authorization URL',
|
||||
name: 'authUrl',
|
||||
type: 'hidden' as NodePropertyTypes,
|
||||
default: '=https://{{$parameter["subdomain"]}}.zendesk.com/oauth/authorizations/new',
|
||||
default: '=https://{{$self["subdomain"]}}.zendesk.com/oauth/authorizations/new',
|
||||
description: 'URL to get authorization code. Replace {SUBDOMAIN_HERE} with your subdomain.',
|
||||
required: true,
|
||||
},
|
||||
@@ -37,7 +37,7 @@ export class ZendeskOAuth2Api implements ICredentialType {
|
||||
displayName: 'Access Token URL',
|
||||
name: 'accessTokenUrl',
|
||||
type: 'hidden' as NodePropertyTypes,
|
||||
default: '=https://{{$parameter["subdomain"]}}.zendesk.com/oauth/tokens',
|
||||
default: '=https://{{$self["subdomain"]}}.zendesk.com/oauth/tokens',
|
||||
description: 'URL to get access token. Replace {SUBDOMAIN_HERE} with your subdomain.',
|
||||
required: true,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user