Skip to content
Snippets Groups Projects
Commit eb8506ce authored by Sushil Khanchi's avatar Sushil Khanchi :koala:
Browse files

RepositoryService: add initials for FindMergeBase

parent 5d348a95
No related branches found
No related tags found
1 merge request!54RepositoryService: implement FindMergeBase RPC
......@@ -37,6 +37,8 @@
gitlab_revision_changeset,
)
from ..stub.repository_service_pb2 import (
FindMergeBaseRequest,
FindMergeBaseResponse,
RepositoryExistsRequest,
RepositoryExistsResponse,
GetArchiveRequest,
......@@ -71,6 +73,12 @@
"""RepositoryServiceService implementation.
"""
def FindMergeBase(self,
request: FindMergeBaseRequest,
context) -> FindMergeBaseResponse:
return not_implemented(context, FindMergeBaseResponse,
issue=26)
def RepositoryExists(self,
request: RepositoryExistsRequest,
context) -> RepositoryExistsResponse:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment