chatwoot-develop/app/jobs/channels/twilio/templates_sync_job.rb

8 lines
181 B
Ruby
Executable File

class Channels::Twilio::TemplatesSyncJob < ApplicationJob
queue_as :low
def perform(twilio_channel)
Twilio::TemplateSyncService.new(channel: twilio_channel).call
end
end