n8n/packages/nodes-base/credentials/TrelloApi.credentials.ts
2021-06-12 18:39:55 +02:00

32 lines
527 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class TrelloApi implements ICredentialType {
name = 'trelloApi';
displayName = 'Trello API';
documentationUrl = 'trello';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
{
displayName: 'API Token',
name: 'apiToken',
type: 'string',
default: '',
},
{
displayName: 'OAuth Secret',
name: 'oauthSecret',
type: 'string',
default: '',
},
];
}