mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 21:54:48 +02:00
28 lines
786 B
Ruby
28 lines
786 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.utc.xmlschema
|
|
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
|
|
|
|
if @notification.action&.contact
|
|
render(partial: 'epp/poll/action',
|
|
locals: {
|
|
builder: xml,
|
|
action: @notification.action
|
|
})
|
|
end
|
|
|
|
render('epp/shared/trID', builder: xml)
|
|
end
|
|
end
|