Add Trello-Nodes

This commit is contained in:
Jan Oberhauser
2019-07-12 17:54:15 +02:00
parent be9c5622ac
commit 4de2319a5a
6 changed files with 1738 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TrelloApi implements ICredentialType {
name = 'trelloApi';
displayName = 'Trello API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'API Token',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'OAuth Secret',
name: 'oauthSecret',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}