core/app/finders/concerns/spree/product_filterable.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Spree
  module ProductFilterable
    private

    def find_available(scope, products_scope)
      scope.filterable.for_products(products_scope)
    end
  end
end