docbrown/app/services/edge_cache/bust_events.rb
Alex 8598ed090e
Create services for busting pages, tags, events, and podcasts (#11812)
* Create bust_page service and spec

* Specify spec with .once

* Create bust_tag service and spec

* Create bust_event service and spec

* Create bust_podcast service and spec
2020-12-09 10:37:02 -05:00

8 lines
127 B
Ruby

module EdgeCache
class BustEvents < Bust
def self.call
bust("/events")
bust("/events?i=i")
end
end
end