method
add_associations
v2.3.8 -
Show latest stable
-
0 notes -
Class: ActiveRecord::XmlSerializer
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0 (0)
- 2.2.1 (0)
- 2.3.8 (0)
- 3.0.0 (38)
- 3.0.9 (-1)
- 3.1.0 (0)
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0
- 7.1.3.2
- 7.1.3.4
- What's this?
add_associations(association, records, opts)
public
Hide source
# File activerecord/lib/active_record/serializers/xml_serializer.rb, line 231 def add_associations(association, records, opts) if records.is_a?(Enumerable) tag = reformat_name(association.to_s) type = options[:skip_types] ? {} : {:type => "array"} if records.empty? builder.tag!(tag, type) else builder.tag!(tag, type) do association_name = association.to_s.singularize records.each do |record| if options[:skip_types] record_type = {} else record_class = (record.class.to_s.underscore == association_name) ? nil : record.class.name record_type = {:type => record_class} end record.to_xml opts.merge(:root => association_name).merge(record_type) end end end else if record = @record.send(association) record.to_xml(opts.merge(:root => association)) end end end