mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
25 lines
445 B
TypeScript
25 lines
445 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export class WorkableApi implements ICredentialType {
|
||
|
name = 'workableApi';
|
||
|
displayName = 'Workable API';
|
||
|
documentationUrl = 'workable';
|
||
|
properties: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Subdomain',
|
||
|
name: 'subdomain',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Access Token',
|
||
|
name: 'accessToken',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
];
|
||
|
}
|