diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2023-03-28 17:31:37 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-03-29 20:03:02 +0000 |
commit | 79cbc21d702958479b1fb1946620a52577a5ba37 (patch) | |
tree | 305e6cbd7952c3789a45a31cb014d27e56b25a1a /sonar-ws | |
parent | 82a542030f84cfa67cea4a4c39a3a79160290d41 (diff) | |
download | sonarqube-79cbc21d702958479b1fb1946620a52577a5ba37.tar.gz sonarqube-79cbc21d702958479b1fb1946620a52577a5ba37.zip |
SONAR-18746 Remove the field periods from the response of api/qualitygates/project_status
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualitygates.proto | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto index 8d137726d1c..8c9d4fbf962 100644 --- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto +++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto @@ -33,7 +33,7 @@ message ProjectStatusResponse { message ProjectStatus { optional Status status = 1; repeated Condition conditions = 2; - repeated Period periods = 3; + reserved 3; //drop periods optional bool ignoredConditions = 4; optional NewCodePeriod period = 5; optional string caycStatus = 6; @@ -55,13 +55,6 @@ message ProjectStatusResponse { optional string parameter = 3; } - message Period { - optional int32 index = 1; - optional string mode = 2; - optional string date = 3; - optional string parameter = 4; - } - enum Status { OK = 1; WARN = 2; |