mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 09:21:43 +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
|