* Add soft delete for statuses to allow them to appear instant * Allow reporting soft-deleted statuses and show them in the admin UI * Change index for getting an account's statuses
		
			
				
	
	
		
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class RemovalWorker
 | 
						|
  include Sidekiq::Worker
 | 
						|
 | 
						|
  def perform(status_id, options = {})
 | 
						|
    RemoveStatusService.new.call(Status.with_discarded.find(status_id), **options.symbolize_keys)
 | 
						|
  rescue ActiveRecord::RecordNotFound
 | 
						|
    true
 | 
						|
  end
 | 
						|
end
 |