mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 15:46:08 +10:00
11 lines
175 B
Ruby
11 lines
175 B
Ruby
class HistoricalDataWorker
|
|
include Sidekiq::Worker
|
|
include Sidetiq::Schedulable
|
|
|
|
recurrence { daily.hour_of_day(12) }
|
|
|
|
def perform
|
|
HistoricalData.track!
|
|
end
|
|
end
|