18 lines
498 B
Ruby
18 lines
498 B
Ruby
module Gitlab
|
|
module GitalyClient
|
|
class Notifications
|
|
attr_accessor :stub
|
|
|
|
# 'repository' is a Gitlab::Git::Repository
|
|
def initialize(repository)
|
|
@gitaly_repo = repository.gitaly_repository
|
|
@stub = Gitaly::Notifications::Stub.new(nil, nil, channel_override: repository.gitaly_channel)
|
|
end
|
|
|
|
def post_receive
|
|
request = Gitaly::PostReceiveRequest.new(repository: @gitaly_repo)
|
|
@stub.post_receive(request)
|
|
end
|
|
end
|
|
end
|
|
end
|