Flowdock
method

construct_find_options!

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::HasManyThroughAssociation
construct_find_options!(options) 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/has_many_through_association.rb, line 48
        def construct_find_options!(options)
          options[:select]  = construct_select(options[:select])
          options[:from]  ||= construct_from
          options[:joins]   = construct_joins(options[:joins])
          options[:include] = @reflection.source_reflection.options[:include] if options[:include].nil? && @reflection.source_reflection.options[:include]
        end
Register or log in to add new notes.