Welcome to mirror list, hosted at ThFree Co, Russian Federation.

secret_detection.rb « security « parsers « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 175731b6b644ba4f7d27cf0f38ff2ff3004c818e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Gitlab
  module Ci
    module Parsers
      module Security
        class SecretDetection < Common
          private

          def create_location(location_data)
            ::Gitlab::Ci::Reports::Security::Locations::SecretDetection.new(
              file_path: location_data['file'],
              start_line: location_data['start_line'],
              end_line: location_data['end_line'],
              class_name: location_data['class'],
              method_name: location_data['method']
            )
          end
        end
      end
    end
  end
end