method
set_belongs_to_association_for
v2.1.0 -
Show latest stable
- Class:
ActiveRecord::Associations::AssociationProxy
set_belongs_to_association_for(record)protected
No documentation available.
# File activerecord/lib/active_record/associations/association_proxy.rb, line 146
def set_belongs_to_association_for(record)
if @reflection.options[:as]
record["#{@reflection.options[:as]}_id"] = @owner.id unless @owner.new_record?
record["#{@reflection.options[:as]}_type"] = @owner.class.base_class.name.to_s
else
record[@reflection.primary_key_name] = @owner.id unless @owner.new_record?
end
end