Welcome to mirror list, hosted at ThFree Co, Russian Federation.

recurring_pod_check.rb « workers « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90551eae693f0f0263dc01ed947fc8f48d308289 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Workers
  class RecurringPodCheck < Base
    sidekiq_options queue: :low

    def perform
      Pod.check_all!
    end
  end
end