mirror of
https://github.com/ditkrg/outboxable.git
synced 2026-01-23 22:36:46 +00:00
9 lines
181 B
Ruby
9 lines
181 B
Ruby
module Outboxable
|
|
class Worker
|
|
include Sidekiq::Job
|
|
|
|
def perform(outbox_id)
|
|
Outboxable::PublishingManager.publish(resource: Outbox.find(outbox_id))
|
|
end
|
|
end
|
|
end |