11 lines
221 B
Ruby
11 lines
221 B
Ruby
module Notifications
|
|
class RemoveOldNotificationsWorker
|
|
include Sidekiq::Job
|
|
|
|
sidekiq_options queue: :low_priority, retry: 10
|
|
|
|
def perform
|
|
Notification.fast_destroy_old_notifications
|
|
end
|
|
end
|
|
end
|