LafayetteCollegeLibraries/spot

View on GitHub
app/jobs/clear_expired_embargoes_and_leases_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
class ClearExpiredEmbargoesAndLeasesJob < ApplicationJob
  def perform
    ::Spot::EmbargoLeaseService.clear_all_expired(regenerate_thumbnails: true)
  end
end