2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-07-07 12:52:19 +08:00
|
|
|
module Jobs
|
|
|
|
class AboutStats < Jobs::Scheduled
|
|
|
|
every 30.minutes
|
|
|
|
|
|
|
|
def execute(args)
|
2016-04-21 14:45:16 +08:00
|
|
|
About.refresh_stats
|
2015-07-07 12:52:19 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|