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

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

module Projects
  module Security
    module ConfigurationHelper
      def security_upgrade_path
        'https://about.gitlab.com/pricing/'
      end
    end
  end
end

::Projects::Security::ConfigurationHelper.prepend_if_ee('::EE::Projects::Security::ConfigurationHelper')