summaryrefslogtreecommitdiff
path: root/app/services/admin/propagate_service_template.rb
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