mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
532503b69f
* Added reaction method to message * Increased limit for channels on getChannels, removed unused fields in the code * Using own operation for reactions * Registering reaction fields and operations * Added Operation "Reaction" to Slack.node.ts * Fixing variable name for emoji * now removing reaction on "remove" instead of "add" * Using GET for reactions.get and passing arguments as query * Added members operation * Fixed typo in timestamp * Added user.info and user.getPresence * Fixed: wrong operation name * ⚡ Improvements to #1238 * ⚡ Add field resolve data when retrieving channel members * ⚡ Minor improvements to Slack-Node Co-authored-by: Andreas Scherren <ascherren@brightfuture.de> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
102 lines
1.6 KiB
TypeScript
102 lines
1.6 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const reactionOperations = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'reaction',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Adds a reaction to a message',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get the reactions of a message',
|
|
},
|
|
{
|
|
name: 'Remove',
|
|
value: 'remove',
|
|
description: 'Remove a reaction of a message',
|
|
},
|
|
],
|
|
default: 'add',
|
|
description: 'The operation to perform.',
|
|
},
|
|
] as INodeProperties[];
|
|
|
|
export const reactionFields = [
|
|
{
|
|
displayName: 'Channel',
|
|
name: 'channelId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChannels',
|
|
},
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'reaction',
|
|
],
|
|
operation: [
|
|
'add',
|
|
'get',
|
|
'remove',
|
|
],
|
|
},
|
|
},
|
|
description: 'Channel containing the message.',
|
|
},
|
|
{
|
|
displayName: 'Emoji',
|
|
name: 'name',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'reaction',
|
|
],
|
|
operation: [
|
|
'add',
|
|
'remove',
|
|
],
|
|
},
|
|
},
|
|
description: 'Name of emoji.',
|
|
placeholder: '+1',
|
|
},
|
|
{
|
|
displayName: 'Timestamp',
|
|
name: 'timestamp',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'reaction',
|
|
],
|
|
operation: [
|
|
'add',
|
|
'get',
|
|
'remove',
|
|
],
|
|
},
|
|
},
|
|
description: `Timestamp of the message.`,
|
|
},
|
|
] as INodeProperties[];
|