internetee/registry

View on GitHub
app/jobs/update_whois_record_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class UpdateWhoisRecordJob < ApplicationJob
  def perform(names, type)
    Whois::Update.run(names: [names].flatten, type: type)
  end
end