Small improvement

This commit is contained in:
ricardo 2020-07-23 19:49:07 -04:00
parent 8015c91f25
commit e387229642

View file

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