Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# frozen_string_literal: true
module Jobs
class CleanUpSearchLogs < ::Jobs::Scheduled
every 1.week
def execute(args)
SearchLog.clean_up
end