Skip to content

Commit

Permalink
feat(Slack Node): Add option to hide workflow link on message update (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored Sep 25, 2024
1 parent 1ab94d6 commit 422c946
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion packages/nodes-base/nodes/Slack/V2/MessageDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,30 @@ export const messageFields: INodeProperties[] = [
},
],
},

{
displayName: 'Options',
name: 'otherOptions',
type: 'collection',
displayOptions: {
show: {
operation: ['update'],
resource: ['message'],
},
},
default: {},
description: 'Other options to set',
placeholder: 'Add option',
options: [
{
displayName: 'Include Link to Workflow',
name: 'includeLinkToWorkflow',
type: 'boolean',
default: true,
description:
'Whether to append a link to this workflow at the end of the message. This is helpful if you have many workflows sending Slack messages.',
},
],
},
/* ----------------------------------------------------------------------- */
/* message:delete
/* ----------------------------------------------------------------------- */
Expand Down

0 comments on commit 422c946

Please sign in to comment.