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

23 lines
479 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class ClockifyApi implements ICredentialType {
name = 'clockifyApi';
displayName = 'Clockify API';
documentationUrl = 'clockify';
properties: INodeProperties[] = [
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
];
}