Add basic contact creation request to EPP

This commit is contained in:
Martin Lensment 2014-07-02 16:37:11 +03:00
parent d0251de28f
commit 2187be6364
6 changed files with 100 additions and 1 deletions

View file

@ -1,9 +1,11 @@
class Epp::CommandsController < ApplicationController
include Epp::Common
include Epp::DomainsHelper
include Epp::ContactsHelper
OBJECT_TYPES = {
'http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd' => 'domain'
'http://www.nic.cz/xml/epp/domain-1.4 domain-1.4.xsd' => 'domain',
'http://www.nic.cz/xml/epp/contact-1.6 contact-1.6.xsd' => 'contact'
}
private