mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05: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
|