internetee-registry/app/views/epp/poll/poll_req.xml.builder
2018-08-24 10:29:09 +03:00

19 lines
586 B
Ruby

xml.epp_head do
xml.response do
xml.result('code' => '1301') do
xml.msg 'Command completed successfully; ack to dequeue'
end
xml.tag!('msgQ', 'count' => current_user.unread_notifications.count, 'id' => @notification.id) do
xml.qDate @notification.created_at.try(:iso8601)
xml.msg @notification.text
end
if @notification.attached_obj_type == 'DomainTransfer'
xml.resData do
xml << render('epp/domains/partials/transfer', builder: xml, dt: @object)
end if @object
end
render('epp/shared/trID', builder: xml)
end
end