13 lines
306 B
Ruby
13 lines
306 B
Ruby
# 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')
|