1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-08 10:39:01 +03:00
n8n/packages/nodes-base/credentials/MandrillApi.credentials.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
381 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2019-10-26 19:58:04 +03:00
export class MandrillApi implements ICredentialType {
name = 'mandrillApi';
2019-10-26 19:58:04 +03:00
displayName = 'Mandrill API';
documentationUrl = 'mandrill';
properties: INodeProperties[] = [
2019-10-26 19:58:04 +03:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
2019-10-26 19:58:04 +03:00
default: '',
},
];
}