n8n/packages/nodes-base/credentials/Signl4Api.credentials.ts

20 lines
427 B
TypeScript
Raw Normal View History

2020-06-23 08:20:21 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
2020-06-24 21:06:48 -07:00
export class Signl4Api implements ICredentialType {
name = 'signl4Api';
2020-06-23 08:20:21 -07:00
displayName = 'SIGNL4 Webhook';
documentationUrl = 'signl4';
2020-06-23 08:20:21 -07:00
properties = [
{
displayName: 'Team Secret',
name: 'teamSecret',
type: 'string' as NodePropertyTypes,
default: '',
description: 'The team secret is the last part of your SIGNL4 webhook URL.'
},
];
}