5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 09:00:48 +00:00

feat: realizar la limpieza en segundo plano

This commit is contained in:
f 2023-03-29 14:57:30 -03:00
parent 69c5d8d7bb
commit 4442338a68
2 changed files with 9 additions and 3 deletions

8
app/jobs/cleanup_job.rb Normal file
View file

@ -0,0 +1,8 @@
# frozen_string_literal: true
# Realiza tareas de limpieza en segundo plano
class CleanupJob < ApplicationJob
def perform(before = nil)
CleanupService.new(before: before).cleanup_everything!
end
end

View file

@ -4,8 +4,6 @@ namespace :cleanup do
desc 'Cleanup sites'
task everything: :environment do
before = ENV.fetch('BEFORE', '30').to_i.days.ago
service = CleanupService.new(before: before)
service.cleanup_everything!
CleanupJob.perform_later(before)
end
end