mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:50:26 -06:00
14 lines
221 B
Ruby
14 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
|