diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2019-05-06 17:06:30 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-05-22 20:21:17 +0200 |
commit | 986f94e0e94b78698874bb5eeca6a392090c19ca (patch) | |
tree | fc09599c9b6e62aff7f0fb7314c703cc183cd6a8 /sonar-ws | |
parent | ad48aec8711bb9400b779bdc23f512f48ee0802f (diff) | |
download | sonarqube-986f94e0e94b78698874bb5eeca6a392090c19ca.tar.gz sonarqube-986f94e0e94b78698874bb5eeca6a392090c19ca.zip |
SONAR-11950 add revision to response of WS api/projects/search
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projects.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projects.proto b/sonar-ws/src/main/protobuf/ws-projects.proto index 2f5372f1305..be060144e48 100644 --- a/sonar-ws/src/main/protobuf/ws-projects.proto +++ b/sonar-ws/src/main/protobuf/ws-projects.proto @@ -35,6 +35,7 @@ message SearchMyProjectsWsResponse { optional string lastAnalysisDate = 6; optional string qualityGate = 7; repeated Link links = 8; + optional string revision = 9; } message Link { @@ -71,6 +72,7 @@ message SearchWsResponse { optional string qualifier = 5; optional string visibility = 6; optional string lastAnalysisDate = 7; + optional string revision = 8; } } |