Flowdock
method

convert_to_id

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: PolymorphicArrayValue
convert_to_id(value) 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/relation/predicate_builder/polymorphic_array_value.rb, line 43
        def convert_to_id(value)
          case value
          when Base
            value._read_attribute(primary_key(value))
          when Relation
            value.select(primary_key(value))
          end
        end
Register or log in to add new notes.