Method: Relaton::Render::Ietf::Fields#compound_fields_format

Defined in:
lib/relaton/render/fields.rb

#compound_fields_format(hash) ⇒ Object



24
25
26
27
28
29
30
# File 'lib/relaton/render/fields.rb', line 24

def compound_fields_format(hash)
  ret = super
  ret[:included]&.each do |h|
    compound_fields_format(h)
  end
  ret
end