11 lines
239 B
Ruby
11 lines
239 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Integrations
|
||
|
# TODO: Remove this as part of https://gitlab.com/gitlab-org/gitlab/-/issues/335178
|
||
|
class PropagateTemplateService
|
||
|
def self.propagate(_integration)
|
||
|
# no-op
|
||
|
end
|
||
|
end
|
||
|
end
|