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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'proto/remote.proto')
-rw-r--r--proto/remote.proto15
1 files changed, 12 insertions, 3 deletions
diff --git a/proto/remote.proto b/proto/remote.proto
index 9b76b149c..8241fd2d0 100644
--- a/proto/remote.proto
+++ b/proto/remote.proto
@@ -33,13 +33,22 @@ service RemoteService {
};
}
rpc FindRemoteRepository(FindRemoteRepositoryRequest) returns (FindRemoteRepositoryResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ scope_level: SERVER
+ };
}
rpc FindRemoteRootRef(FindRemoteRootRefRequest) returns (FindRemoteRootRefResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
rpc ListRemotes(ListRemotesRequest) returns (stream ListRemotesResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
}