docbrown/app/workers/bust_cache_path_worker.rb
Alex f70af66258
Update bust to EdgeCache::Bust (#12052)
* Update bust to EdgeCache::Bust

* Update specs

* Fix more specs

* Fix more specs :)
2020-12-29 09:53:15 +01:00

5 lines
109 B
Ruby

class BustCachePathWorker < BustCacheBaseWorker
def perform(path)
EdgeCache::Bust.call(path)
end
end