Sha256: 4c542d1f8fc7cd99a5c9764cc1e1a5e42f9e439ed30a4822d9a28323767c976a
Contents?: true
Size: 299 Bytes
Versions: 30
Compression:
Stored size: 299 Bytes
Contents
class SurveySectionSweeper < ActionController::Caching::Sweeper observe :survey_section def after_save(section) expire_cache(section) end def after_destroy(section) expire_cache(section) end def expire_cache(section) expire_fregment "section_#{section.id}" end end
Version data entries
30 entries across 30 versions & 3 rubygems