core/lib/spree/core/webhooks.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
42%
module Spree
  module Webhooks
    def self.disable_webhooks
      webhooks_disabled_previously = ENV['DISABLE_SPREE_WEBHOOKS']
      begin
        ENV['DISABLE_SPREE_WEBHOOKS'] = 'true'
        yield
      ensure
        ENV['DISABLE_SPREE_WEBHOOKS'] = webhooks_disabled_previously
      end
    end
  end
end