mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:18:18 +08: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
|