mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
Initial version.
This commit is contained in:
parent
c9fdf16b0b
commit
474eac5005
18
packages/nodes-base/credentials/SIGNL4Api.credentials.ts
Normal file
18
packages/nodes-base/credentials/SIGNL4Api.credentials.ts
Normal 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.'
|
||||
},
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue