feat(Telegram Node): Add support for sending messages to forum topics (#5746)

This commit is contained in:
Kirill 2023-07-13 13:03:26 +03:00 committed by GitHub
parent cfbc99e1f0
commit e6a81f0008
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1609,6 +1609,29 @@ export class Telegram implements INodeType {
default: 0,
description: 'If the message is a reply, ID of the original message',
},
{
displayName: 'Message Thread ID',
name: 'message_thread_id',
type: 'number',
displayOptions: {
show: {
'/operation': [
'sendAnimation',
'sendAudio',
'sendChatAction',
'sendDocument',
'sendLocation',
'sendMediaGroup',
'sendMessage',
'sendPhoto',
'sendSticker',
'sendVideo',
],
},
},
default: 0,
description: 'The unique identifier of the forum topic',
},
{
displayName: 'Title',
name: 'title',