mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
13 lines
221 B
Ruby
13 lines
221 B
Ruby
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
|