spree-contrib/spree_recently_viewed

View on GitHub
app/models/spree/product_decorator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree::ProductDecorator
  def self.prepended(base)
    def base.find_by_array_of_ids(ids)
      where(id: ids)
    end
  end
end

Spree::Product.prepend Spree::ProductDecorator