summaryrefslogtreecommitdiff
path: root/lib/gitlab/gitaly_client/notification_service.rb
blob: 873c3e4086d5467d10d165978abb543e23375e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Gitlab
  module GitalyClient
    class NotificationService
      # 'repository' is a Gitlab::Git::Repository
      def initialize(repository)
        @gitaly_repo = repository.gitaly_repository
        @storage = repository.storage
      end

      def post_receive
        GitalyClient.call(
          @storage,
          :notification_service,
          :post_receive,
          Gitaly::PostReceiveRequest.new(repository: @gitaly_repo)
        )
      end
    end
  end
end