slovensko-digital/harvester.ecosystem

View on GitHub
app/jobs/itms/sync_all_codelist_values_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Itms::SyncAllCodelistValuesJob < ItmsJob
  def perform
    Itms::CodelistValue.find_each do |codelist_value|
      Itms::SyncCodelistValueJob.perform_later(codelist_value.itms_href)
    end
  end
end