Add Sendy-Node (#1013)

*  Sendy-Node

*  Improvements

*  Small improvement
This commit is contained in:
Ricardo Espinoza
2020-10-13 04:48:20 -04:00
committed by GitHub
parent 6f98caf748
commit 6098384a30
7 changed files with 925 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class SendyApi implements ICredentialType {
name = 'sendyApi';
displayName = 'Sendy API';
properties = [
{
displayName: 'URL',
name: 'url',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'https://yourdomain.com',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}