5e4d15d802
It won't be useful in practice for now, and we can always put it back in if the need arises
8 lines
121 B
Ruby
8 lines
121 B
Ruby
class Webhook::DeliveryJob < ApplicationJob
|
|
queue_as :webhooks
|
|
|
|
def perform(delivery)
|
|
delivery.deliver
|
|
end
|
|
end
|