find_target(async: 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/has_many_through_association.rb, line 225
        def find_target(async: false)
          raise NotImplementedError, "No async loading for HasManyThroughAssociation yet" if async
          return [] unless target_reflection_has_associated_record?
          return scope.to_a if disable_joins
          super
        end
Register or log in to add new notes.