mirror of
https://github.com/internetee/registry.git
synced 2025-06-06 04:37:30 +02:00
9 lines
264 B
Ruby
9 lines
264 B
Ruby
module RemoveHold
|
|
extend ActiveSupport::Concern
|
|
|
|
def remove_hold(params)
|
|
xml = epp_xml.update(name: { value: params[:domain_name] },
|
|
rem: [status: { attrs: { s: 'clientHold' }, value: '' }])
|
|
current_user.request(xml)
|
|
end
|
|
end
|