2021-02-22 10:10:48 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Projects
|
|
|
|
module Security
|
|
|
|
module ConfigurationHelper
|
|
|
|
def security_upgrade_path
|
2021-11-12 07:10:27 -05:00
|
|
|
"https://#{ApplicationHelper.promo_host}/pricing/"
|
2021-02-22 10:10:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
::Projects::Security::ConfigurationHelper.prepend_mod_with('Projects::Security::ConfigurationHelper')
|