mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
23 lines
479 B
TypeScript
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: '',
|
|
},
|
|
];
|
|
}
|