2020-06-23 08:20:21 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-06-23 08:20:21 -07:00
|
|
|
} 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';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'signl4';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-06-23 08:20:21 -07:00
|
|
|
{
|
|
|
|
displayName: 'Team Secret',
|
|
|
|
name: 'teamSecret',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-06-23 08:20:21 -07:00
|
|
|
default: '',
|
2020-10-22 06:46:03 -07:00
|
|
|
description: 'The team secret is the last part of your SIGNL4 webhook URL.',
|
2020-06-23 08:20:21 -07:00
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|