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-27 12:12:43 +0200 |
commit | 1930b52f3a1d5441ae786417506a8cd21ce3b796 (patch) | |
tree | 2b071f36904080a86b46712de594c528df234ff9 /sonar-ws | |
parent | acdecb5ce3d6ce8aebc8685bf7bda8e7a218245c (diff) | |
download | sonarqube-1930b52f3a1d5441ae786417506a8cd21ce3b796.tar.gz sonarqube-1930b52f3a1d5441ae786417506a8cd21ce3b796.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..eba01af28f6 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 project = 17; message Tags { repeated string tags = 1; |