2016-11-29 06:32:25 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemovalWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(status_id)
|
|
|
|
RemoveStatusService.new.call(Status.find(status_id))
|
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
|