2016-11-30 01:32:25 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemovalWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2019-08-22 12:17:12 +10:00
|
|
|
def perform(status_id, options = {})
|
2019-08-23 05:55:56 +10:00
|
|
|
RemoveStatusService.new.call(Status.with_discarded.find(status_id), **options.symbolize_keys)
|
2016-12-19 19:31:12 +11:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2016-11-30 01:32:25 +11:00
|
|
|
end
|
2016-12-12 08:23:11 +11:00
|
|
|
end
|