11 lines
234 B
Ruby
11 lines
234 B
Ruby
# 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
|