mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
8 lines
217 B
Ruby
8 lines
217 B
Ruby
class SlackUnfurlJob < ApplicationJob
|
|
queue_as :low
|
|
|
|
def perform(params, integration_hook)
|
|
Integrations::Slack::SlackLinkUnfurlService.new(params: params, integration_hook: integration_hook).perform
|
|
end
|
|
end
|