5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 22:55:47 +00:00
panel/lib/tasks/cleanup.rake

9 lines
201 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 |_, args|
CleanupJob.perform_later((args.extras.first || 30).to_i.days.ago)
2022-04-15 13:41:53 +00:00
end
end