Sha256: fd062150e866e8b2ee0fdcb9dc84ff41df85c2537dc704417cf87de615915164

Contents?: true

Size: 484 Bytes

Versions: 2

Compression:

Stored size: 484 Bytes

Contents

# frozen_string_literal: true

require_relative '../../../instrumentation/gateway/argument'

module Datadog
  module AppSec
    module Contrib
      module Sinatra
        module Gateway
          # Gateway Route Params argument.
          class RouteParams < Instrumentation::Gateway::Argument
            attr_reader :params

            def initialize(params)
              super
              @params = params
            end
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ddtrace-1.10.1 lib/datadog/appsec/contrib/sinatra/gateway/route_params.rb
ddtrace-1.10.0 lib/datadog/appsec/contrib/sinatra/gateway/route_params.rb