mirror of
https://github.com/ditkrg/outboxable.git
synced 2026-01-23 06:16:46 +00:00
12 lines
203 B
Ruby
12 lines
203 B
Ruby
require 'sidekiq'
|
|
|
|
module Outboxable
|
|
class Worker
|
|
include ::Sidekiq::Job
|
|
|
|
def perform(outbox_id)
|
|
Outboxable::PublishingManager.publish(resource: Outbox.find(outbox_id))
|
|
end
|
|
end
|
|
end
|