Added Mandrill support

This commit is contained in:
Ricardo Espinoza
2019-10-26 12:58:04 -04:00
parent a2b589880f
commit 9d0d85875e
5 changed files with 413 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MandrillApi implements ICredentialType {
name = 'mandrillApi';
displayName = 'Mandrill API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}