Module: Spree::StoreHelper
- Defined in:
- app/helpers/spree/store_helper.rb
Instance Method Summary collapse
Instance Method Details
#cache_key_for_taxons ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'app/helpers/spree/store_helper.rb', line 4 def cache_key_for_taxons ActiveSupport::Deprecation.warn(" cache_key_for_taxons is deprecated. Rails >= 5 has built-in support for collection cache keys.\n Instead in your view use:\n cache [I18n.locale, @taxons] do\n EOS\n max_updated_at = @taxons.maximum(:updated_at).to_i\n parts = [@taxon.try(:id), max_updated_at].compact.join(\"-\")\n \"\#{I18n.locale}/taxons/\#{parts}\"\nend\n", caller) |