Flowdock
method

normalize_reflection_attribute

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::AutosaveAssociation
normalize_reflection_attribute(indexed_attribute, reflection, index, attribute) 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/autosave_association.rb, line 355
      def normalize_reflection_attribute(indexed_attribute, reflection, index, attribute)
        if indexed_attribute
          "#{reflection.name}[#{index}].#{attribute}"
        else
          "#{reflection.name}.#{attribute}"
        end
      end
Register or log in to add new notes.