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

policy_check.rb « security « checks « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2be393351a97b09b046ecfd55c00769a78d0803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module Checks
    module Security
      class PolicyCheck < BaseSingleChecker
        def validate!; end
      end
    end
  end
end

Gitlab::Checks::Security::PolicyCheck.prepend_mod