Created
June 20, 2019 10:43
-
-
Save SilencerWeb/989a138e33f4863dee2b36fd276ca3a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bot.telegram.sendVideo('', '', { | |
reply_markup: { | |
inline_keyboard: [ | |
[ | |
{ | |
text: 'Remove caption', | |
callback_data: `remove_post_caption_${id}`, | |
}, | |
], | |
[ | |
{ | |
text: 'Approve', | |
callback_data: `approve_post_${id}`, | |
}, | |
{ | |
text: 'Dismiss', | |
callback_data: `dismiss_post_${id}`, | |
}, | |
], | |
], | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment