Initial version.

This commit is contained in:
Ron 2020-06-23 17:20:21 +02:00 committed by GitHub
parent c9fdf16b0b
commit 474eac5005
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class SIGNL4Api implements ICredentialType {
name = 'SIGNL4Api';
displayName = 'SIGNL4 Webhook';
properties = [
{
displayName: 'Team Secret',
name: 'teamSecret',
type: 'string' as NodePropertyTypes,
default: '',
description: 'The team secret is the last part of your SIGNL4 webhook URL.'
},
];
}