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

propagate_service_template.rb « admin « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c251537c4799e65338095a25d2cc4fbc15a13d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Admin
  class PropagateServiceTemplate
    include PropagateService

    def propagate
      # TODO: Remove this as part of  https://gitlab.com/gitlab-org/gitlab/-/issues/335178
    end
  end
end