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

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

module Git
  class WikiPushService < ::BaseService
    def execute
      # This is used in EE
    end
  end
end

Git::WikiPushService.prepend_if_ee('EE::Git::WikiPushService')