diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2023-01-27 16:16:07 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-02-02 20:03:40 +0000 |
commit | 2d60913db1dc3a499ab5d681b7b2ad324b3ac19d (patch) | |
tree | aed34a02b8c7fd4bc3047ba26ad001cd0cc6461f /sonar-ws | |
parent | 54301a6bf2874d5ab2319805b93aa47dae21d961 (diff) | |
download | sonarqube-2d60913db1dc3a499ab5d681b7b2ad324b3ac19d.tar.gz sonarqube-2d60913db1dc3a499ab5d681b7b2ad324b3ac19d.zip |
SONAR-17815 implement updated logic for CaYC quality gates
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualitygates.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto index 168a6b226ae..b1e9f05226f 100644 --- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto +++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto @@ -36,7 +36,7 @@ message ProjectStatusResponse { repeated Period periods = 3; optional bool ignoredConditions = 4; optional NewCodePeriod period = 5; - optional bool isCaycCompliant = 6; + optional string caycStatus = 6; } message Condition { @@ -131,7 +131,7 @@ message ShowWsResponse { repeated Condition conditions = 3; optional bool isBuiltIn = 4; optional Actions actions = 5; - optional bool isCaycCompliant = 6; + optional string caycStatus = 6; message Condition { optional string id = 1; @@ -168,7 +168,7 @@ message ListWsResponse { optional bool isDefault = 3; optional bool isBuiltIn = 4; optional Actions actions = 5; - optional bool isCaycCompliant = 6; + optional string caycStatus = 6; } message RootActions { |