Flowdock
method

set_belongs_to_association_for

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::AssociationProxy
set_belongs_to_association_for(record) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.