This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-29 06:32:25 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemovalWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2019-08-21 19:17:12 -07:00
|
|
|
def perform(status_id, options = {})
|
2019-08-22 12:55:56 -07:00
|
|
|
RemoveStatusService.new.call(Status.with_discarded.find(status_id), **options.symbolize_keys)
|
2016-12-19 00:31:12 -08:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2016-11-29 06:32:25 -08:00
|
|
|
end
|
2016-12-11 13:23:11 -08:00
|
|
|
end
|