🔀 Merge branch 'clockify' of https://github.com/dominion-solutions/n8n into dominion-solutions-clockify

This commit is contained in:
Jan Oberhauser
2020-02-21 08:57:36 +01:00
9 changed files with 302 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ClockifyApi implements ICredentialType {
name = 'clockifyApi';
displayName = 'Clockify API';
properties = [
// 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' as NodePropertyTypes,
default: '',
},
];
}