Sha256: d161de7c8798662642323823b910caa45eaea6f77086c258e260755956f17b4e
Contents?: true
Size: 351 Bytes
Versions: 98
Compression:
Stored size: 351 Bytes
Contents
# frozen_string_literal: true module Spree class HomeController < Spree::StoreController helper 'spree/products' respond_to :html def index @searcher = build_searcher(params.merge(include_images: true)) @products = @searcher.retrieve_products @taxonomies = Spree::Taxonomy.includes(root: :children) end end end
Version data entries
98 entries across 98 versions & 2 rubygems