internetee-registry/app/helpers/epp/contacts_helper.rb
2014-07-02 16:37:11 +03:00

13 lines
236 B
Ruby

module Epp::ContactsHelper
def create_contact
ccp = contact_create_params
end
### HELPER METHODS ###
def contact_create_params
{
addr: get_params_hash('epp command create create postalInfo addr')
}
end
end