9 lines
172 B
Ruby
9 lines
172 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Cron::UpdateStatsJob < Cron::CronJob
|
|
self.schedule_expression = "every 1 hour"
|
|
|
|
def perform(*args)
|
|
Stat.update_stats
|
|
end
|
|
end
|