af83/chouette-core

View on GitHub
app/jobs/cron/purge_referential_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Cron
  class PurgeReferentialJob < DailyJob
    def perform_once
      ::Referential.clean!
    end
  end
end