Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,7 @@ The `msg.payload.type` needs to be set to one of the following values:
| **restrictChatMember** | user_id (integer) | { permissions (ChatPermissions) } | https://core.telegram.org/bots/api#restrictchatmember |
| **promoteChatMember** | user_id (integer) | optional arguments | https://core.telegram.org/bots/api#promotechatmember |
| **setChatAdministratorCustomTitle** | user_id (integer) | custom title as string | https://core.telegram.org/bots/api#setchatadministratorcustomtitle |
| **setChatMemberTag** | user_id (integer) | tag as string | https://core.telegram.org/bots/api#setchatmembertag |
| **setChatPhoto** | photo (InputFile) | - | https://core.telegram.org/bots/api#setchatphoto |
| **setChatTitle** | title (string) | - | https://core.telegram.org/bots/api#setchattitle |
| **setChatDescription** | description (string) |- | https://core.telegram.org/bots/api#setchatdescription |
Expand Down
1 change: 1 addition & 0 deletions telegrambot/nodes/out-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,7 @@ module.exports = function (RED) {
case 'approveChatJoinRequest':
case 'declineChatJoinRequest':
case 'setChatAdministratorCustomTitle':
case 'setChatMemberTag':
case 'stopPoll':
case 'setMessageReaction':
// The userId must be passed in msg.payload.content: note that this is is a number not the username.
Expand Down