0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-08 17:53:55 +08:00
discourse/app/jobs/scheduled/clean_up_stylesheet_cache.rb

11 lines
183 B
Ruby
Vendored

# frozen_string_literal: true
module Jobs
class CleanUpStylesheetCache < ::Jobs::Scheduled
every 1.week
def execute(args)
StylesheetCache.clean_up
end
end
end