mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
12 lines
167 B
Ruby
12 lines
167 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Workers
|
|
class RecurringPodCheck < Base
|
|
sidekiq_options queue: :low
|
|
|
|
def perform
|
|
Pod.check_all!
|
|
end
|
|
end
|
|
end
|