UNC-Libraries/hy-c

View on GitHub
app/jobs/reindex_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
C
75%
# frozen_string_literal: true
class ReindexJob < Hyrax::ApplicationJob
  queue_as :long_running_jobs

  def perform
    Samvera::NestingIndexer.reindex_all!(extent: Hyrax::Adapters::NestingIndexAdapter::FULL_REINDEX)
  end
end