Add missing Airtable-Node-Credentials

This commit is contained in:
Jan Oberhauser 2019-07-07 19:19:07 +02:00
parent 16ba7e6ed7
commit 13ac18afa8

View file

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