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

template_helpers.rb « ci « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 119f8d001a1ce2b4a6cf54632d85bdd8418b1917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Ci
  module TemplateHelpers
    def secure_analyzers_prefix
      'registry.gitlab.com/security-products'
    end

    def template_registry_host
      'registry.gitlab.com'
    end
  end
end

Ci::TemplateHelpers.prepend_mod