5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-01 11:56:08 +00:00
panel/lib/tasks/cleanup.rake

11 lines
222 B
Ruby

# frozen_string_literal: true
namespace :cleanup do
desc 'Cleanup sites'
task everything: :environment do |_, args|
before = ENV.fetch('BEFORE', '30').to_i.days.ago
CleanupJob.perform_later(before)
end
end