🔀 Merge branch 'feature/jotform-trigger' of https://github.com/RicardoE105/n8n into RicardoE105-feature/jotform-trigger

This commit is contained in:
Jan Oberhauser
2020-01-26 21:51:53 -08:00
5 changed files with 201 additions and 0 deletions

View File

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