RUBYCRITIC
class Webhook::Status::RefreshJob < ApplicationJob - Webhook::Status::RefreshJob has no descriptive comment
self.queue_adapter = :good_job
def perform - Webhook::Status::RefreshJob#perform doesn't depend on instance state (maybe move it to another class?)
Webhook.active.find_each do |webhook|
next if webhook.valid_url?
webhook.inactive!
end
end
end