1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-02-21 02:56:40 -08:00
n8n/packages/nodes-base/credentials/WebflowApi.credentials.ts

19 lines
346 B
TypeScript
Raw Normal View History

2020-01-17 09:34:36 -08:00
import {
ICredentialType,
INodeProperties,
2020-01-17 09:34:36 -08:00
} from 'n8n-workflow';
export class WebflowApi implements ICredentialType {
name = 'webflowApi';
displayName = 'Webflow API';
documentationUrl = 'webflow';
properties: INodeProperties[] = [
2020-01-17 09:34:36 -08:00
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
2020-01-17 09:34:36 -08:00
default: '',
},
];
}