n8n/packages/nodes-base/credentials/TodoistApi.credentials.ts

20 lines
337 B
TypeScript
Raw Normal View History

2019-11-05 07:17:06 -08:00
import {
ICredentialType,
INodeProperties,
2019-11-05 07:17:06 -08:00
} from 'n8n-workflow';
export class TodoistApi implements ICredentialType {
name = 'todoistApi';
displayName = 'Todoist API';
documentationUrl = 'todoist';
properties: INodeProperties[] = [
2019-11-05 07:17:06 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2019-11-05 07:17:06 -08:00
default: '',
},
];
}