Minor improvements to Signl4-Node

This commit is contained in:
Jan Oberhauser
2020-06-25 09:54:25 +02:00
parent a6a4eed711
commit 830e4f19b6
5 changed files with 3 additions and 3 deletions

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.'
},
];
}