* Refactor caching * Bring back old bust class * Refactor with PR feedback * Remove useless return values
9 lines
181 B
Ruby
9 lines
181 B
Ruby
module EdgeCache
|
|
class BustEvents
|
|
def self.call
|
|
cache_bust = EdgeCache::Bust.new
|
|
cache_bust.call("/events")
|
|
cache_bust.call("/events?i=i")
|
|
end
|
|
end
|
|
end
|