1class DeletePetitionJob < ApplicationJob
 
2  queue_as :high_priority
 
3
  • UtilityFunction - doesn't depend on instance state (maybe move it to another class?) » reek
  • Complexity 1 » saikuro
4  def perform(petition)
 
5    petition.destroy
 
6  end
 
7end