mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 16:32:04 +02:00
Add check if UpdateProhibited to nameserver bulk update
This commit is contained in:
parent
7063aa1210
commit
d3525acffe
2 changed files with 32 additions and 1 deletions
|
@ -153,7 +153,7 @@ class Registrar < ApplicationRecord
|
|||
puny = origin.domain.name_puny
|
||||
next unless domains.include?(idn) || domains.include?(puny) || domains.empty?
|
||||
|
||||
if origin.domain.nameservers.where(hostname: new_attributes[:hostname]).any?
|
||||
if domain_not_updatable?(hostname: new_attributes[:hostname], domain: origin.domain)
|
||||
failed_list << idn
|
||||
next
|
||||
end
|
||||
|
@ -202,6 +202,10 @@ class Registrar < ApplicationRecord
|
|||
|
||||
private
|
||||
|
||||
def domain_not_updatable?(hostname:, domain:)
|
||||
domain.nameservers.where(hostname: hostname).any? || domain.bulk_update_prohibited?
|
||||
end
|
||||
|
||||
def set_defaults
|
||||
self.language = Setting.default_language unless language
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue