scinote-web/lib/tasks/exportable_items.rake
2017-04-04 10:16:54 +02:00

10 lines
324 B
Ruby

namespace :exportable_items do
desc 'Removes exportable zip files'
task cleanup: :environment do
num = Constants::EXPORTABLE_ZIP_EXPIRATION_DAYS
ZipExport.where('created_at < ?', num.days.ago).destroy_all
puts "All exportable zip files older than " \
"'#{num.days.ago}' have been removed"
end
end