Add Workable Trigger Node (#2522)

*  Workable Trigger

*  Improvements

*  Small improvement

*  Minor improvements

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Ricardo Espinoza
2021-12-10 12:36:24 -05:00
committed by GitHub
parent 2d1422f5de
commit b62dc50559
5 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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: '',
},
];
}