mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-28 13:16:34 +08:00
12 lines
251 B
Ruby
Vendored
12 lines
251 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class DestroyOldHiddenPosts < ::Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
return unless SiteSetting.delete_old_hidden_posts
|
|
PostDestroyer.destroy_old_hidden_posts
|
|
end
|
|
end
|
|
end
|