mirror of
https://github.com/internetee/registry.git
synced 2025-07-24 11:38:30 +02:00
13 lines
236 B
Ruby
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
|