about summary refs log tree commit diff
path: root/app/workers/removal_worker.rb
blob: 7470c54f561fb8cfcce30a354d7ad5e127ad5092 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class RemovalWorker
  include Sidekiq::Worker

  def perform(status_id)
    RemoveStatusService.new.call(Status.find(status_id))
  end
end