diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2020-09-16 15:42:44 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-09-29 20:07:41 +0000 |
commit | dae0f392c72132be88af4a73d98875fdf477de50 (patch) | |
tree | ca2687ae56e80f773baef2aafa9671613e1e635a /sonar-ws | |
parent | 1c53c91568bc9af10ca78ae5aff7a1e79f255074 (diff) | |
download | sonarqube-dae0f392c72132be88af4a73d98875fdf477de50.tar.gz sonarqube-dae0f392c72132be88af4a73d98875fdf477de50.zip |
SONAR-13862 Add dismiss information to 'api/ce/analysis_status' WS
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-ce.proto | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto index b7938c61d53..2c083fbbec6 100644 --- a/sonar-ws/src/main/protobuf/ws-ce.proto +++ b/sonar-ws/src/main/protobuf/ws-ce.proto @@ -67,10 +67,16 @@ message AnalysisStatusWsResponse { optional string organization = 1; optional string key = 2; optional string name = 3; - repeated string warnings = 4; + repeated Warning warnings = 4; optional string branch = 5; optional string pullRequest = 6; } + + message Warning { + optional string key = 1; + optional string message = 2; + optional bool dismissable = 3; + } } // GET api/ce/component |