Method: Spree::StoreHelper#cache_key_for_taxons

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

#cache_key_for_taxonsObject



10
11
12
13
14
# File 'app/helpers/spree/store_helper.rb', line 10

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