glitch-soc/mastodon

View on GitHub
lib/chewy/strategy/bypass_with_warning.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Chewy
  class Strategy
    class BypassWithWarning < Base
      def update(...)
        Rails.logger.warn 'Chewy update without a root strategy' unless @warning_issued
        @warning_issued = true
      end
    end
  end
end