1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/app/jobs/scheduled/clean_up_exports.rb
2014-12-28 22:31:12 +05:30

10 lines
192 B
Ruby

module Jobs
class CleanUpExports < Jobs::Scheduled
every 2.day
def execute(args)
UserExport.remove_old_exports # delete exported CSV files older than 2 days
end
end
end