* 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
12 lines
219 B
Ruby
12 lines
219 B
Ruby
module EdgeCache
|
|
class BustPage < Bust
|
|
def self.call(slug)
|
|
return unless slug
|
|
|
|
bust("/page/#{slug}")
|
|
bust("/page/#{slug}?i=i")
|
|
bust("/#{slug}")
|
|
bust("/#{slug}?i=i")
|
|
end
|
|
end
|
|
end
|