6
7
8
9
10
11
12
13
14
15
|
# File 'lib/active_data/active_record/nested_attributes.rb', line 6
def accepts_nested_attributes_for(*attr_names)
options = attr_names.
active_data_associations, active_record_association = attr_names.partition do |association_name|
reflect_on_association(association_name).is_a?(ActiveData::Model::Associations::Reflections::Base)
end
ActiveData::Model::Associations::NestedAttributes::NestedAttributesMethods
.accepts_nested_attributes_for(self, *active_data_associations, options.dup)
super(*active_record_association, options.dup)
end
|