mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 13:45:29 +08:00
The weekly job can take more than 2 hours to run on larger sites. It is ideal for the jobs to be as small as possible and this is what this commit attempts.
11 lines
164 B
Ruby
Vendored
11 lines
164 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class CleanUpDrafts < ::Jobs::Scheduled
|
|
every 1.week
|
|
|
|
def execute(args)
|
|
Draft.cleanup!
|
|
end
|
|
end
|
|
end
|