Files
clientsflow/research/chatwoot/app/jobs/channels/twilio/templates_sync_job.rb

8 lines
181 B
Ruby

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