mirror of
https://github.com/discourse/discourse.git
synced 2025-03-01 11:58:41 +08:00
12 lines
191 B
Ruby
12 lines
191 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class PurgeOldMiniSchedulerStat < ::Jobs::Scheduled
|
||
|
every 1.week
|
||
|
|
||
|
def execute(args)
|
||
|
MiniScheduler::Stat.purge_old
|
||
|
end
|
||
|
end
|
||
|
end
|