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/diff.proto')
-rw-r--r--proto/diff.proto30
1 files changed, 24 insertions, 6 deletions
diff --git a/proto/diff.proto b/proto/diff.proto
index 7548ad88f..5f9b2f271 100644
--- a/proto/diff.proto
+++ b/proto/diff.proto
@@ -9,23 +9,41 @@ import "shared.proto";
service DiffService {
// Returns stream of CommitDiffResponse with patches chunked over messages
rpc CommitDiff(CommitDiffRequest) returns (stream CommitDiffResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
// Return a stream so we can divide the response in chunks of deltas
rpc CommitDelta(CommitDeltaRequest) returns (stream CommitDeltaResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
rpc CommitPatch(CommitPatchRequest) returns (stream CommitPatchResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
rpc RawDiff(RawDiffRequest) returns (stream RawDiffResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
rpc RawPatch(RawPatchRequest) returns (stream RawPatchResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
rpc DiffStats(DiffStatsRequest) returns (stream DiffStatsResponse) {
- option (op_type).op = ACCESSOR;
+ option (op_type) = {
+ op: ACCESSOR
+ target_repository_field: "1"
+ };
}
}