mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 14:49:38 +02:00
8 lines
104 B
Ruby
8 lines
104 B
Ruby
|
class DestroyJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(model)
|
||
|
model.destroy
|
||
|
end
|
||
|
end
|