debian-mirror-gitlab/lib/gitlab/gitaly_client/notification_service.rb
2019-02-15 15:39:39 +05:30

23 lines
514 B
Ruby

# 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