mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
9 lines
142 B
Ruby
9 lines
142 B
Ruby
module Jobs
|
|
class TopRefreshToday < Jobs::Scheduled
|
|
every 1.hour
|
|
|
|
def execute(args)
|
|
TopTopic.refresh_daily!
|
|
end
|
|
end
|
|
end
|