5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-29 18:46:08 +00:00
panel/lib/tasks/cleanup.rake

10 lines
211 B
Ruby
Raw Normal View History

2022-04-15 13:41:53 +00:00
# frozen_string_literal: true
namespace :cleanup do
desc 'Cleanup sites'
task everything: :environment do
before = ENV.fetch('BEFORE', '30').to_i.days.ago
CleanupJob.perform_later(before)
2022-04-15 13:41:53 +00:00
end
end