mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 15:14:05 -08:00
62 lines
1.2 KiB
TypeScript
62 lines
1.2 KiB
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
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',
|
||
|
color: '#000000',
|
||
|
},
|
||
|
inputs: ['main'],
|
||
|
outputs: ['main'],
|
||
|
credentials: [
|
||
|
{
|
||
|
name: 'mattermostApi',
|
||
|
required: true,
|
||
|
},
|
||
|
],
|
||
|
properties: [
|
||
|
{
|
||
|
displayName: 'Resource',
|
||
|
name: 'resource',
|
||
|
type: 'options',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Channel',
|
||
|
value: 'channel',
|
||
|
},
|
||
|
{
|
||
|
name: 'Message',
|
||
|
value: 'message',
|
||
|
},
|
||
|
{
|
||
|
name: 'Reaction',
|
||
|
value: 'reaction',
|
||
|
},
|
||
|
{
|
||
|
name: 'User',
|
||
|
value: 'user',
|
||
|
},
|
||
|
],
|
||
|
default: 'message',
|
||
|
description: 'The resource to operate on',
|
||
|
},
|
||
|
...channel.descriptions,
|
||
|
...message.descriptions,
|
||
|
...reaction.descriptions,
|
||
|
...user.descriptions,
|
||
|
],
|
||
|
};
|