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:
authorMateusz Nowotyński <maxmati4@gmail.com>2019-11-13 11:33:15 +0300
committerMateusz Nowotyński <maxmati4@gmail.com>2019-11-13 12:03:48 +0300
commita45b8d9cb4e3ad6ddc7533cce277d4c29bc5ee22 (patch)
treeec1fa1082a11bbd8ea32ddad51eb1759ac966794 /proto/namespace.proto
parent6a4bb1a83196cea9e499d88fa03b8c2146d8fd13 (diff)
Add storage flag
Diffstat (limited to 'proto/namespace.proto')
-rw-r--r--proto/namespace.proto8
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/namespace.proto b/proto/namespace.proto
index 54ce1ceaa..205079d10 100644
--- a/proto/namespace.proto
+++ b/proto/namespace.proto
@@ -34,23 +34,23 @@ service NamespaceService {
}
message AddNamespaceRequest {
- string storage_name = 1;
+ string storage_name = 1 [(storage)=true];
string name = 2;
}
message RemoveNamespaceRequest {
- string storage_name = 1;
+ string storage_name = 1 [(storage)=true];
string name = 2;
}
message RenameNamespaceRequest {
- string storage_name = 1;
+ string storage_name = 1 [(storage)=true];
string from = 2;
string to = 3;
}
message NamespaceExistsRequest {
- string storage_name = 1;
+ string storage_name = 1 [(storage)=true];
string name = 2;
}