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

8 lines
109 B
Ruby
Raw Normal View History

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