unepwcmc/SAPI

View on GitHub
app/workers/downloads_cache_cleanup_worker.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DownloadsCacheCleanupWorker
  include Sidekiq::Worker
  sidekiq_options :queue => :admin, :backtrace => 50

  def perform(type_of_cache)
    DownloadsCache.send(:"clear_#{type_of_cache}")
  end
end