ifad/chronomodel

View on GitHub
lib/chrono_model/patches/batches.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module ChronoModel
  module Patches
    module Batches
      def in_batches(**)
        return super unless try(:history?)

        with_hid_pkey { super }
      end
    end
  end
end