mirror of
https://github.com/discourse/discourse.git
synced 2025-09-12 21:10:47 +08:00
9 lines
162 B
Ruby
9 lines
162 B
Ruby
module Jobs
|
|
class DirectoryRefreshDaily < Jobs::Scheduled
|
|
every 1.hour
|
|
|
|
def execute(args)
|
|
DirectoryItem.refresh_period!(:daily)
|
|
end
|
|
end
|
|
end
|