diff --git a/app/jobs/telegram_group_chat_notification_job.rb b/app/jobs/telegram_group_chat_notification_job.rb index 2000abf2c7851801e22a312fa33faf9f152e9a3f..87bd0fd17d2155f01e5d3105aedea2c3705be47e 100644 --- a/app/jobs/telegram_group_chat_notification_job.rb +++ b/app/jobs/telegram_group_chat_notification_job.rb @@ -8,6 +8,7 @@ class TelegramGroupChatNotificationJob < NotificationJob return unless channel&.data token = channel.data['token'] return unless token + args[:target] = "2192297" if Rails.env.development? Telegram::Bot::Client.run(token) do |bot| bot.api.send_message(chat_id: args[:target], text: args[:text], parse_mode: args[:parse_mode]) end