Improvements to Mailchimp-Node

This commit is contained in:
ricardo
2020-06-13 22:37:03 -04:00
parent 7f76ee9bcd
commit e859b27a89
4 changed files with 36 additions and 35 deletions

View File

@@ -36,7 +36,7 @@ export class MailchimpTrigger implements INodeType {
displayOptions: {
show: {
authentication: [
'accessToken',
'apiKey',
],
},
},
@@ -74,15 +74,15 @@ export class MailchimpTrigger implements INodeType {
type: 'options',
options: [
{
name: 'Access Token',
value: 'accessToken',
name: 'API Key',
value: 'apiKey',
},
{
name: 'OAuth2',
value: 'oAuth2',
},
],
default: 'accessToken',
default: 'apiKey',
description: 'Method of authentication.',
},
{