mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-01 03:17:53 -05:00
10 lines
142 B
Ruby
10 lines
142 B
Ruby
|
module Jobs
|
||
|
class TopRefreshToday < Jobs::Scheduled
|
||
|
every 1.hour
|
||
|
|
||
|
def execute(args)
|
||
|
TopTopic.refresh_daily!
|
||
|
end
|
||
|
end
|
||
|
end
|