af83/chouette-core

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Cron
  class PurgeWorkgroupsJob < DailyJob
    def perform_once
      ::Workgroup.purge_all
    end
  end
end