mirror of
https://github.com/internetee/registry.git
synced 2025-07-29 22:16:19 +02:00
5 lines
139 B
Ruby
5 lines
139 B
Ruby
class UpdateWhoisRecordJob < ApplicationJob
|
|
def perform(names, type)
|
|
Whois::Update.run(names: [names].flatten, type: type)
|
|
end
|
|
end
|