Module: Spree::StoreHelper

Defined in:
app/helpers/spree/store_helper.rb

Instance Method Summary collapse

Instance Method Details

#cache_key_for_taxonsObject



4
5
6
7
8
# File 'app/helpers/spree/store_helper.rb', line 4

def cache_key_for_taxons
  max_updated_at = @taxons.maximum(:updated_at).to_i
  parts = [@taxon.try(:id), max_updated_at].compact.join("-")
  "#{I18n.locale}/taxons/#{parts}"
end