aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/protobuf/ws-projects.proto
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-02-16 17:10:48 +0100
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-02-22 17:53:38 +0100
commitda6b8dc9f8919b2b80e48dd1c2fa9bd5d5340710 (patch)
tree39e632c6c192d8de7a4879f93e07fc922cb60ff2 /sonar-ws/src/main/protobuf/ws-projects.proto
parent305be7ad0ece1ff44d6a705d4a6691e8906cdfb0 (diff)
downloadsonarqube-da6b8dc9f8919b2b80e48dd1c2fa9bd5d5340710.tar.gz
sonarqube-da6b8dc9f8919b2b80e48dd1c2fa9bd5d5340710.zip
SONAR-8773 Move WS update_key and bulk_update_key to api/projects
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-projects.proto')
-rw-r--r--sonar-ws/src/main/protobuf/ws-projects.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projects.proto b/sonar-ws/src/main/protobuf/ws-projects.proto
index 7dcb6260857..86ed442a8d6 100644
--- a/sonar-ws/src/main/protobuf/ws-projects.proto
+++ b/sonar-ws/src/main/protobuf/ws-projects.proto
@@ -71,3 +71,13 @@ message SearchWsResponse {
}
}
+// WS api/projects/prepare_bulk_update_key
+message BulkUpdateKeyWsResponse {
+ repeated Key keys = 1;
+
+ message Key {
+ optional string key = 1;
+ optional string newKey = 2;
+ optional bool duplicate = 3;
+ }
+}