mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
9 lines
139 B
Ruby
9 lines
139 B
Ruby
module Jobs
|
|
class CleanUpSearchLogs < Jobs::Scheduled
|
|
every 1.week
|
|
|
|
def execute(args)
|
|
SearchLog.clean_up
|
|
end
|
|
end
|
|
end
|