module GardenVariety::TalentScout::FindCollectionOverride

Private Instance Methods

find_collection() click to toggle source
Calls superclass method
# File lib/garden_variety/talent_scout.rb, line 15
def find_collection
  if self.class.model_search_class?
    @search = model_search
    @search.results.all
  else
    super
  end
end