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