aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorLéo Geoffroy <leo.geoffroy@sonarsource.com>2024-10-25 09:46:34 +0200
committersonartech <sonartech@sonarsource.com>2024-11-05 20:03:01 +0000
commit900f99653d2e5cc0679fd6cb246e9f912195823d (patch)
tree54152eec248af2e3034808e0c58211ec12fc6e1d /sonar-ws
parent77a5e05ed4d2ff936dca4752f6d6dffb7e38b6c6 (diff)
downloadsonarqube-900f99653d2e5cc0679fd6cb246e9f912195823d.tar.gz
sonarqube-900f99653d2e5cc0679fd6cb246e9f912195823d.zip
Add new fields hasStandardConditions and hasMQRConditions in qualitgates/list endpoint and checks
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-qualitygates.proto12
1 files changed, 7 insertions, 5 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto
index 69af5d6a15d..8a6e1b43ce1 100644
--- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto
+++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto
@@ -49,11 +49,11 @@ message ProjectStatusResponse {
optional string actualValue = 7;
}
- message NewCodePeriod {
- optional string mode = 1;
- optional string date = 2;
- optional string parameter = 3;
- }
+ message NewCodePeriod {
+ optional string mode = 1;
+ optional string date = 2;
+ optional string parameter = 3;
+ }
enum Status {
OK = 1;
@@ -163,6 +163,8 @@ message ListWsResponse {
optional bool isBuiltIn = 4;
optional Actions actions = 5;
optional string caycStatus = 6;
+ optional bool hasStandardConditions = 7;
+ optional bool hasMQRConditions = 8;
}
message RootActions {