1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
2014-07-01 10:09:55 +10:00

11 lines
223 B
Ruby

module Jobs
# if locale changes or search algorithm changes we may want to reindex stuff
class ReindexSearch < Jobs::Scheduled
every 1.day
def execute(args)
Search.rebuild_problem_posts
end
end
end