mirror of
https://github.com/discourse/discourse.git
synced 2025-03-10 07:25:28 +08:00
10 lines
142 B
Ruby
10 lines
142 B
Ruby
![]() |
module Jobs
|
||
|
class DirectoryRefresh < Jobs::Scheduled
|
||
|
every 1.hour
|
||
|
|
||
|
def execute(args)
|
||
|
DirectoryItem.refresh!
|
||
|
end
|
||
|
end
|
||
|
end
|