* Refactor caching * Bring back old bust class * Refactor with PR feedback * Remove useless return values
8 lines
152 B
Ruby
8 lines
152 B
Ruby
module EdgeCache
|
|
class BustSidebar
|
|
def self.call
|
|
cache_bust = EdgeCache::Bust.new
|
|
cache_bust.call("/sidebars/home")
|
|
end
|
|
end
|
|
end
|