hummingbird-me/kitsu-server

View on GitHub
app/workers/library_entry_log_removal_worker.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
class LibraryEntryLogRemovalWorker
  include Sidekiq::Worker
  sidekiq_options queue: 'later'

  def perform
    LibraryEntryLog.where('created_at <= ?', 1.month.ago).destroy_all
  end
end