mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
13 lines
251 B
Ruby
13 lines
251 B
Ruby
# 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
|