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: 07be3c1027d0fb4a9c52aadf0d7ec89bcc0678f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Admin
  class PropagateServiceTemplate
    include PropagateService

    def propagate
      return unless integration.active?

      create_integration_for_projects_without_integration
    end
  end
end