mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +02:00
REPP: Domain registrant change test
This commit is contained in:
parent
92db43db18
commit
1461d2a566
6 changed files with 89 additions and 5 deletions
|
@ -39,7 +39,7 @@ module Repp
|
|||
|
||||
def cta(action = 'add')
|
||||
params[:contacts].each { |c| c[:action] = action }
|
||||
action = Actions::DomainUpdate.new(@domain, contact_create_params, current_user)
|
||||
action = Actions::DomainUpdate.new(@domain, contact_create_params, false)
|
||||
|
||||
# rubocop:disable Style/AndOr
|
||||
handle_errors(@domain) and return unless action.call
|
||||
|
|
|
@ -38,7 +38,7 @@ module Repp
|
|||
|
||||
def cta(action = 'add')
|
||||
params[:dns_keys].each { |n| n[:action] = action }
|
||||
action = Actions::DomainUpdate.new(@domain, dnssec_params, current_user)
|
||||
action = Actions::DomainUpdate.new(@domain, dnssec_params, false)
|
||||
|
||||
# rubocop:disable Style/AndOr
|
||||
(handle_errors(@domain) and return) unless action.call
|
||||
|
|
|
@ -28,7 +28,7 @@ module Repp
|
|||
desc 'Delete specific nameserver from domain'
|
||||
def destroy
|
||||
nameserver = { nameservers: [{ hostname: params[:id], action: 'rem' }] }
|
||||
action = Actions::DomainUpdate.new(@domain, nameserver, current_user)
|
||||
action = Actions::DomainUpdate.new(@domain, nameserver, false)
|
||||
|
||||
unless action.call
|
||||
handle_errors(@domain)
|
||||
|
|
|
@ -76,7 +76,7 @@ module Repp
|
|||
param :auth_info, String, required: false, desc: 'New authorization code'
|
||||
end
|
||||
def update
|
||||
action = Actions::DomainUpdate.new(@domain, params[:domain], current_user)
|
||||
action = Actions::DomainUpdate.new(@domain, params[:domain], false)
|
||||
|
||||
unless action.call
|
||||
handle_errors(@domain)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue