Flowdock
replace_keys(record, force: false) private

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/belongs_to_polymorphic_association.rb, line 17
        def replace_keys(record, force: false)
          super

          target_type = record ? record.class.polymorphic_name : nil

          if force || owner[reflection.foreign_type] != target_type
            owner[reflection.foreign_type] = target_type
          end
        end
Register or log in to add new notes.