tech(refactor): deplace les service d'expiration usager/dossier dans un namespace dedié

This commit is contained in:
Martin 2023-11-07 07:24:57 +01:00 committed by mfo
parent fb51710309
commit 99529c611d
11 changed files with 22 additions and 22 deletions

View file

@ -3,6 +3,6 @@ class Cron::ExpiredUsersDeletionJob < Cron::CronJob
def perform(*args)
return if ENV['EXPIRE_USER_DELETION_JOB_LIMIT'].blank?
ExpiredUsersDeletionService.process_expired
Expired::UsersDeletionService.process_expired
end
end