mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 12:11:16 -05:00
9 lines
141 B
Ruby
9 lines
141 B
Ruby
module Jobs
|
|
class TopRefreshOlder < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
TopTopic.refresh_older!
|
|
end
|
|
end
|
|
end
|