671c5c931f
- Ability to configure telegram bots as a channel in chatwoot - Receive a message sent to the telegram bot in chatwoot - Ability to reply to telegram users from chatwoot - Receive attachment messages in chatwoot fixes: #1843
18 lines
625 B
Ruby
18 lines
625 B
Ruby
class SendReplyJob < ApplicationJob
|
|
queue_as :high
|
|
|
|
def perform(message_id)
|
|
message = Message.find(message_id)
|
|
channel_name = message.conversation.inbox.channel.class.to_s
|
|
case channel_name
|
|
when 'Channel::FacebookPage'
|
|
::Facebook::SendOnFacebookService.new(message: message).perform
|
|
when 'Channel::TwitterProfile'
|
|
::Twitter::SendOnTwitterService.new(message: message).perform
|
|
when 'Channel::TwilioSms'
|
|
::Twilio::SendOnTwilioService.new(message: message).perform
|
|
when 'Channel::Telegram'
|
|
::Telegram::SendOnTelegramService.new(message: message).perform
|
|
end
|
|
end
|
|
end
|