mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
⚡ Add missing credentials file
This commit is contained in:
parent
7be61e2f23
commit
4f3d91e865
|
@ -0,0 +1,18 @@
|
||||||
|
import {
|
||||||
|
ICredentialType,
|
||||||
|
NodePropertyTypes,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export class ApiTemplateIoApi implements ICredentialType {
|
||||||
|
name = 'apiTemplateIoApi';
|
||||||
|
displayName = 'APITemplate.io API';
|
||||||
|
documentationUrl = 'apiTemplateIo';
|
||||||
|
properties = [
|
||||||
|
{
|
||||||
|
displayName: 'API Key',
|
||||||
|
name: 'apiKey',
|
||||||
|
type: 'string' as NodePropertyTypes,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue