mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:05:11 +08:00
10 lines
141 B
Ruby
10 lines
141 B
Ruby
|
module Jobs
|
||
|
class TopRefreshOlder < Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(args)
|
||
|
TopTopic.refresh_older!
|
||
|
end
|
||
|
end
|
||
|
end
|