diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-01-11 11:40:20 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-01-16 11:38:43 +0100 |
commit | 9312e5a69389a7560267d0c30e606d1119ef02c5 (patch) | |
tree | f8a2ff79f5e2cca4a01d3227a24fc68f20e38e72 /sonar-ws/src/main | |
parent | cef26b66d8d63c52a079ede0d126206424b628b5 (diff) | |
download | sonarqube-9312e5a69389a7560267d0c30e606d1119ef02c5.tar.gz sonarqube-9312e5a69389a7560267d0c30e606d1119ef02c5.zip |
SONAR-8595 add organization to api/components/search_projects response
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-components.proto | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-components.proto b/sonar-ws/src/main/protobuf/ws-components.proto index b0659973fe0..fdf92f4dbae 100644 --- a/sonar-ws/src/main/protobuf/ws-components.proto +++ b/sonar-ws/src/main/protobuf/ws-components.proto @@ -65,15 +65,16 @@ message SearchProjectsWsResponse { } message Component { - optional string id = 1; - optional string key = 2; - optional string refId = 3; - optional string refKey = 4; - optional string projectId = 5; - optional string name = 6; - optional string description = 7; - optional string qualifier = 8; - optional string path = 9; - optional string language = 10; - optional bool isFavorite = 11; + optional string organization = 1; + optional string id = 2; + optional string key = 3; + optional string refId = 4; + optional string refKey = 5; + optional string projectId = 6; + optional string name = 7; + optional string description = 8; + optional string qualifier = 9; + optional string path = 10; + optional string language = 11; + optional bool isFavorite = 12; } |