diff options
author | Zipeng WU <zipeng.wu@sonarsource.com> | 2023-01-04 11:40:44 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-01-05 20:02:56 +0000 |
commit | 540e49d2e07c44f5ef3bc735ab4647c0563a2575 (patch) | |
tree | 79d584474aa4e2cea869a18bdffdd5dc118f67dc /sonar-ws/src | |
parent | f62e01e48e4ccbc8fe7039c2658275ef35acd8bf (diff) | |
download | sonarqube-540e49d2e07c44f5ef3bc735ab4647c0563a2575.tar.gz sonarqube-540e49d2e07c44f5ef3bc735ab4647c0563a2575.zip |
SONAR-17815 add isCaycCompliant flag in qualitygate endpoints
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualitygates.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto index 8c6b36a99d4..168a6b226ae 100644 --- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto +++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto @@ -131,6 +131,7 @@ message ShowWsResponse { repeated Condition conditions = 3; optional bool isBuiltIn = 4; optional Actions actions = 5; + optional bool isCaycCompliant = 6; message Condition { optional string id = 1; @@ -167,6 +168,7 @@ message ListWsResponse { optional bool isDefault = 3; optional bool isBuiltIn = 4; optional Actions actions = 5; + optional bool isCaycCompliant = 6; } message RootActions { |