Sha256: dd48ec802d02af206c1ea2dc366538365b9d7b82f9cb802ad86c7cc590f2244b

Contents?: true

Size: 538 Bytes

Versions: 2

Compression:

Stored size: 538 Bytes

Contents

# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

module Contrast
  module Config
    # This class holds the Common Settings for the
    # hidden functionality of the TS
    class RequestAuditConfiguration < BaseConfiguration
      DEFAULT_PATH = './messages'

      KEYS = { enable: false, requests: false, responses: false, path: DEFAULT_PATH }.cs__freeze

      def initialize hsh
        super(hsh, KEYS)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
contrast-agent-4.14.1 lib/contrast/config/request_audit_configuration.rb
contrast-agent-4.14.0 lib/contrast/config/request_audit_configuration.rb