Sha256: f0353b9e8170a92c06800aa0db463088801bc2b0d4da81123e7f075c418b6900
Contents?: true
Size: 819 Bytes
Versions: 20
Compression:
Stored size: 819 Bytes
Contents
# frozen_string_literal: true module GlobalRegistry #:nodoc: module Bindings #:nodoc: class Railtie < Rails::Railtie config.after_initialize do # :nocov: if Module.const_defined? :Rollbar ::Rollbar.configure do |config| config.exception_level_filters.merge!( 'GlobalRegistry::Bindings::RecordMissingGlobalRegistryId' => 'ignore', 'GlobalRegistry::Bindings::EntityMissingMdmId' => 'ignore', 'GlobalRegistry::Bindings::RelatedEntityMissingGlobalRegistryId' => 'ignore', 'GlobalRegistry::Bindings::ParentEntityMissingGlobalRegistryId' => 'ignore', 'GlobalRegistry::Bindings::RelatedEntityExistsWithCID' => 'ignore' ) end end # :nocov: end end end end
Version data entries
20 entries across 20 versions & 1 rubygems