mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
2e57d86fd6
The router file now correctly returns a `INodeExecutionData[][]` instead of a simple `INodeExecutionData[]` forcing the main node file to correct this.
32 lines
632 B
TypeScript
32 lines
632 B
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
INodeType,
|
|
INodeTypeBaseDescription,
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
|
|
import { versionDescription } from './actions/versionDescription';
|
|
import { loadOptions } from './methods';
|
|
import { router } from './actions/router';
|
|
|
|
export class MattermostV1 implements INodeType {
|
|
|
|
description: INodeTypeDescription;
|
|
|
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
|
this.description = {
|
|
...baseDescription,
|
|
...versionDescription,
|
|
};
|
|
}
|
|
|
|
methods = { loadOptions };
|
|
|
|
async execute(this: IExecuteFunctions) {
|
|
return await router.call(this);
|
|
}
|
|
}
|