From a74216c5e50920b5ca51c0fceac7e2a5b6660936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20V=C3=B5hmar?= Date: Thu, 26 Nov 2015 18:27:33 +0200 Subject: [PATCH 1/3] Update eis-1.0.xsd removed requirement of cc attribute with ident - controlled by EPP server policy --- doc/schemas/eis-1.0.xsd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/schemas/eis-1.0.xsd b/doc/schemas/eis-1.0.xsd index 8093c832d..0b2ad8f89 100644 --- a/doc/schemas/eis-1.0.xsd +++ b/doc/schemas/eis-1.0.xsd @@ -83,7 +83,7 @@ - + From 3222480b49d52cf84bfc1f37d5fdc06733d764ca Mon Sep 17 00:00:00 2001 From: Vladimir Krylov Date: Thu, 26 Nov 2015 14:52:40 +0200 Subject: [PATCH 2/3] Story#109040558/no_code fix route (cherry picked from commit 8b710dd) --- app/controllers/admin/pending_updates_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/admin/pending_updates_controller.rb b/app/controllers/admin/pending_updates_controller.rb index 960b65ee5..4d08297d7 100644 --- a/app/controllers/admin/pending_updates_controller.rb +++ b/app/controllers/admin/pending_updates_controller.rb @@ -9,7 +9,7 @@ class Admin::PendingUpdatesController < AdminController if @epp_domain.apply_pending_update! redirect_to admin_domain_path(@domain.id), notice: t(:pending_applied) else - redirect_to admin_edit_domain_path(@domain.id), alert: t(:failure) + redirect_to edit_admin_domain_path(@domain.id), alert: t(:failure) end end From f7274bbb2b8661f7a6a154aa44ad339128b34e2d Mon Sep 17 00:00:00 2001 From: Vladimir Krylov Date: Fri, 27 Nov 2015 08:36:42 +0200 Subject: [PATCH 3/3] Story#109040558 - new_registrant_id doesn't have array, but int --- app/models/domain.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/domain.rb b/app/models/domain.rb index 48188065e..bba0c5ba9 100644 --- a/app/models/domain.rb +++ b/app/models/domain.rb @@ -590,7 +590,7 @@ class Domain < ActiveRecord::Base def pending_registrant return '' if pending_json.blank? return '' if pending_json['new_registrant_id'].blank? - Registrant.find_by(id: pending_json['new_registrant_id'].last) + Registrant.find_by(id: pending_json['new_registrant_id']) end def generate_auth_info