diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2017-07-26 17:48:32 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2017-07-26 17:48:32 +0200 |
commit | f4c2e0eb9afe66f5e71e9f1447f059dd15b143ff (patch) | |
tree | fe33a427dd5901f8b3c5557cac2fd31166540d9c /sonar-ws | |
parent | 104fffdee215450819881fa7ce8a92272c292c84 (diff) | |
download | sonarqube-f4c2e0eb9afe66f5e71e9f1447f059dd15b143ff.tar.gz sonarqube-f4c2e0eb9afe66f5e71e9f1447f059dd15b143ff.zip |
SONAR-9584 Add root project key to response of api/components/search
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-components.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-components.proto b/sonar-ws/src/main/protobuf/ws-components.proto index 58b02d9687c..4a7fe369ced 100644 --- a/sonar-ws/src/main/protobuf/ws-components.proto +++ b/sonar-ws/src/main/protobuf/ws-components.proto @@ -118,6 +118,8 @@ message Component { optional Tags tags = 14; optional string visibility = 15; optional string leakPeriodDate = 16; + // Root project key + optional string projectKey = 17; message Tags { repeated string tags = 1; |