method

construct_find_options!

construct_find_options!(options)
protected

No documentation available.

# 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