diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2023-01-27 16:16:07 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-02-03 14:41:21 +0000 |
commit | ca5790f9c26dcd9fdb291a91193dcf3ffe7bf7de (patch) | |
tree | fd13a52ea8fea3ec35b777c0f83e9e4f8a9f909b /sonar-ws/src | |
parent | f507535da5cc4f1f2d25d6cd3c7c742cda1e8465 (diff) | |
download | sonarqube-ca5790f9c26dcd9fdb291a91193dcf3ffe7bf7de.tar.gz sonarqube-ca5790f9c26dcd9fdb291a91193dcf3ffe7bf7de.zip |
SONAR-17815 implement updated logic for CaYC quality gates
Diffstat (limited to 'sonar-ws/src')
-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 { |