require 'telegram_bot/url' require 'telegram_bot/reply/request' module Telegram module Reply def forward_message(chat_id: @chat.id, from_chat_id:, message_id:, **options) url = Telegram::URL::FORWARD_MESSAGE params = { chat_id: chat_id, from_chat_id: from_chat_id, message_id: message_id, disable_notification: options[:disable_notification].presence } Telegram::Reply::SEND(url: url, params: params) end end end