From 53168a6e2ac2f7f040207ece482f942423ceb226 Mon Sep 17 00:00:00 2001 From: Alex Sherman Date: Wed, 26 Feb 2020 16:19:33 +0500 Subject: [PATCH] Add verified parameter to registrar domain controller strong params See #1540 --- app/controllers/registrar/domains_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/controllers/registrar/domains_controller.rb b/app/controllers/registrar/domains_controller.rb index 5bf1a51f55..2b3b249e7d 100644 --- a/app/controllers/registrar/domains_controller.rb +++ b/app/controllers/registrar/domains_controller.rb @@ -190,9 +190,9 @@ def search_params def domain_params params.require(:domain).permit(:name, :period, :registrant, :registrant_helper, :reserved_pw, - :legal_document, contacts_attributes: {}, - nameservers_attributes: {}, - dnskeys_attributes: {}) + :verified, :legal_document, contacts_attributes: {}, + nameservers_attributes: {}, + dnskeys_attributes: {}) end end end