mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
✨ Add missing Airtable-Node-Credentials
This commit is contained in:
parent
16ba7e6ed7
commit
13ac18afa8
18
packages/nodes-base/credentials/AirtableApi.credentials.ts
Normal file
18
packages/nodes-base/credentials/AirtableApi.credentials.ts
Normal 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: '',
|
||||
},
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue