Skip to content

Commit

Permalink
feat(Telegram Node): Add support for sending messages to forum topics (
Browse files Browse the repository at this point in the history
  • Loading branch information
chrtkv authored and netroy committed Jul 13, 2023
1 parent 2b7bbf0 commit b971fa9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions packages/nodes-base/nodes/Telegram/Telegram.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b971fa9

Please sign in to comment.