node-setup

This commit is contained in:
Ricardo Espinoza
2019-11-05 10:17:06 -05:00
parent 7bc7323aab
commit f5648fd6e1
5 changed files with 213 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TodoistApi implements ICredentialType {
name = 'todoistApi';
displayName = 'Todoist API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}