Add field to reply to message - Microsoft Team (#1479)

* Add replyTo feature to Microsoft Teams

* consolidate create and replyTo channel message in Microsoft Teams Node

*  Improvements to #1451

Co-authored-by: Sebastian Vogel <s.vogel@sachsenkabel.de>
This commit is contained in:
Ricardo Espinoza
2021-02-24 17:58:35 -05:00
committed by GitHub
parent 66f6b7dfeb
commit 61903efaed
2 changed files with 36 additions and 1 deletions

View File

@@ -129,6 +129,32 @@ export const channelMessageFields = [
default: '',
description: 'The content of the item.',
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'channelMessage',
],
operation: [
'create',
],
},
},
options: [
{
displayName: 'Make Reply',
name: 'makeReply',
type: 'string',
default: '',
description: 'An optional ID of the message you want to reply to.',
},
],
},
/* -------------------------------------------------------------------------- */
/* channelMessage:getAll */
/* -------------------------------------------------------------------------- */