mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-06 05:55:21 +02:00
7 lines
108 B
Ruby
7 lines
108 B
Ruby
class DestroyJob < ApplicationJob
|
|
queue_as :latency_low
|
|
|
|
def perform(model)
|
|
model.destroy
|
|
end
|
|
end
|