mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
b62dc50559
* ⚡ Workable Trigger * ⚡ Improvements * ⚡ Small improvement * ⚡ Minor improvements Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
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: '',
|
|
},
|
|
];
|
|
}
|