method
build_record
v5.1.7 -
Show latest stable
- Class:
ActiveRecord::Associations::HasManyThroughAssociation
build_record(attributes)private
No documentation available.
# File activerecord/lib/active_record/associations/has_many_through_association.rb, line 95
def build_record(attributes)
ensure_not_nested
record = super(attributes)
inverse = source_reflection.inverse_of
if inverse
if inverse.collection?
record.send(inverse.name) << build_through_record(record)
elsif inverse.has_one?
record.send("#{inverse.name}=", build_through_record(record))
end
end
record
end