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/storage.proto')
-rw-r--r--proto/storage.proto8
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/storage.proto b/proto/storage.proto
index 903c8137c..74d753267 100644
--- a/proto/storage.proto
+++ b/proto/storage.proto
@@ -9,14 +9,14 @@ import "shared.proto";
service StorageService {
rpc ListDirectories(ListDirectoriesRequest) returns (stream ListDirectoriesResponse) {
option (op_type) = {
- op: MUTATOR
- scope_level: SERVER,
+ op: ACCESSOR,
+ scope_level: STORAGE,
};
}
rpc DeleteAllRepositories(DeleteAllRepositoriesRequest) returns (DeleteAllRepositoriesResponse) {
option (op_type) = {
- op: MUTATOR
- scope_level: SERVER,
+ op: MUTATOR,
+ scope_level: STORAGE,
};
}
}