mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-01 03:17:53 -05: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
|