Merge pull request #3514 from techAPJ/patch-1

FIX: new task to delete old drafts weekly
This commit is contained in:
Jeff Atwood 2015-06-01 20:21:05 -07:00
commit afafa30989
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
module Jobs
class CleanUpDrafts < Jobs::Scheduled
every 1.week
def execute(args)
delete_drafts_older_than_n_days = SiteSetting.delete_drafts_older_than_n_days.days.ago
# remove old drafts
Draft.where("updated_at < ?", delete_drafts_older_than_n_days).destroy_all
end
end
end

View file

@ -1139,6 +1139,8 @@ en:
enable_cdn_js_debugging: "Allow /logs to display proper errors by adding crossorigin permissions on all js includes."
show_create_topics_notice: "If the site has fewer than 5 public topics, show a notice asking admins to create some topics."
delete_drafts_older_than_n_days: Delete drafts older than (n) days.
vacuum_db_days: "Run VACUUM FULL ANALYZE to reclaim DB space after migrations (set to 0 to disable)"
prevent_anons_from_downloading_files: "Prevent anonymous users from downloading attachments. WARNING: this will prevent any non-image site assets posted as attachments from working."

View file

@ -893,6 +893,8 @@ uncategorized:
default: 0
hidden: true
delete_drafts_older_than_n_days: 90
tos_topic_id:
default: -1
hidden: true