n8n/packages/nodes-base/nodes/TheHiveProject/TheHiveProject.node.ts
Tomi Turtiainen 9a1cc56806
fix: Set '@typescript-eslint/return-await' rule to 'always' for node code (no-changelog) (#8363)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2024-01-17 17:08:50 +02:00

16 lines
502 B
TypeScript

import type { IExecuteFunctions, INodeType, INodeTypeDescription } from 'n8n-workflow';
import { description } from './actions/node.description';
import { router } from './actions/router';
import { loadOptions, listSearch, resourceMapping } from './methods';
export class TheHiveProject implements INodeType {
description: INodeTypeDescription = description;
methods = { loadOptions, listSearch, resourceMapping };
async execute(this: IExecuteFunctions) {
return await router.call(this);
}
}