mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
28 lines
601 B
TypeScript
28 lines
601 B
TypeScript
import type {
|
|
IExecuteFunctions,
|
|
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 router.call(this);
|
|
}
|
|
}
|