docbrown/app/services/edge_cache/bust_podcast.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

9 lines
135 B
Ruby

module EdgeCache
class BustPodcast < Bust
def self.call(path)
return unless path
bust("/#{path}")
end
end
end