feat(Slack Node): Add option to hide workflow link on message update (#10927)

This commit is contained in:
Jon
2024-09-25 08:48:45 +01:00
committed by GitHub
parent 1ab94d60fd
commit 422c9463c8

View File

@@ -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 /* message:delete
/* ----------------------------------------------------------------------- */ /* ----------------------------------------------------------------------- */