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
path: root/proto
diff options
context:
space:
mode:
authorJames Liu <jliu@gitlab.com>2023-10-09 06:09:25 +0300
committerJames Liu <jliu@gitlab.com>2023-10-12 08:17:04 +0300
commit654cb89472e87e423cfacd5d96b6095f34de8919 (patch)
tree0ff8a2701b6963faaee4945fde7c945136ac0f5a /proto
parentac61012c72ac8abdf16288cc1849fb749501d07b (diff)
proto: Add missing docs for UserUpdateSubmodule
Diffstat (limited to 'proto')
-rw-r--r--proto/go/gitalypb/operations.pb.go4
-rw-r--r--proto/operations.proto4
2 files changed, 4 insertions, 4 deletions
diff --git a/proto/go/gitalypb/operations.pb.go b/proto/go/gitalypb/operations.pb.go
index 06dd30f8a..160065c21 100644
--- a/proto/go/gitalypb/operations.pb.go
+++ b/proto/go/gitalypb/operations.pb.go
@@ -3789,7 +3789,7 @@ func (x *UserApplyPatchResponse) GetBranchUpdate() *OperationBranchUpdate {
return nil
}
-// UserUpdateSubmoduleRequest ...
+// UserUpdateSubmoduleRequest is a request for the UserUpdateSubmodule RPC.
type UserUpdateSubmoduleRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3912,7 +3912,7 @@ func (x *UserUpdateSubmoduleRequest) GetExpectedOldOid() string {
return ""
}
-// UserUpdateSubmoduleResponse ...
+// UserUpdateSubmoduleResponse is a response for the UserUpdateSubmodule RPC.
type UserUpdateSubmoduleResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/operations.proto b/proto/operations.proto
index 2a52f74ea..c096ed524 100644
--- a/proto/operations.proto
+++ b/proto/operations.proto
@@ -1048,7 +1048,7 @@ message UserApplyPatchResponse {
OperationBranchUpdate branch_update = 1;
}
-// UserUpdateSubmoduleRequest ...
+// UserUpdateSubmoduleRequest is a request for the UserUpdateSubmodule RPC.
message UserUpdateSubmoduleRequest {
// repository is the repository in which the submodule shall be updated.
Repository repository = 1 [(target_repository)=true];
@@ -1079,7 +1079,7 @@ message UserUpdateSubmoduleRequest {
string expected_old_oid = 8;
}
-// UserUpdateSubmoduleResponse ...
+// UserUpdateSubmoduleResponse is a response for the UserUpdateSubmodule RPC.
message UserUpdateSubmoduleResponse {
// branch_update contains information about the updated branch.
OperationBranchUpdate branch_update = 1;