1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-07 14:35:23 +02:00
Maybe/app/jobs/destroy_job.rb

8 lines
108 B
Ruby
Raw Permalink Normal View History

class DestroyJob < ApplicationJob
queue_as :latency_low
def perform(model)
model.destroy
end
end