pull:初次提交
This commit is contained in:
26
n8n-n8n-1.109.2/packages/nodes-base/credentials/SendyApi.credentials.ts
Executable file
26
n8n-n8n-1.109.2/packages/nodes-base/credentials/SendyApi.credentials.ts
Executable file
@@ -0,0 +1,26 @@
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class SendyApi implements ICredentialType {
|
||||
name = 'sendyApi';
|
||||
|
||||
displayName = 'Sendy API';
|
||||
|
||||
documentationUrl = 'sendy';
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'url',
|
||||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'https://yourdomain.com',
|
||||
},
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
type: 'string',
|
||||
typeOptions: { password: true },
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user