mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 23:24:06 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
59 lines
1.2 KiB
TypeScript
59 lines
1.2 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import type { INodeTypeDescription } from 'n8n-workflow';
|
|
import * as channel from './channel';
|
|
import * as message from './message';
|
|
import * as reaction from './reaction';
|
|
import * as user from './user';
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
displayName: 'Mattermost',
|
|
name: 'mattermost',
|
|
icon: 'file:mattermost.svg',
|
|
group: ['output'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Sends data to Mattermost',
|
|
defaults: {
|
|
name: 'Mattermost',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'mattermostApi',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Channel',
|
|
value: 'channel',
|
|
},
|
|
{
|
|
name: 'Message',
|
|
value: 'message',
|
|
},
|
|
{
|
|
name: 'Reaction',
|
|
value: 'reaction',
|
|
},
|
|
{
|
|
name: 'User',
|
|
value: 'user',
|
|
},
|
|
],
|
|
default: 'message',
|
|
},
|
|
...channel.descriptions,
|
|
...message.descriptions,
|
|
...reaction.descriptions,
|
|
...user.descriptions,
|
|
],
|
|
};
|