mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:15:46 +08:00
11 lines
236 B
Ruby
11 lines
236 B
Ruby
module Jobs
|
|
class DirectoryRefreshOlder < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
periods = DirectoryItem.period_types.keys - [:daily]
|
|
periods.each { |p| DirectoryItem.refresh_period!(p) }
|
|
end
|
|
end
|
|
end
|