diff options
author | Benjamin Campomenosi <benjamin.campomenosi@sonarsource.com> | 2023-09-28 16:07:31 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-10-10 20:02:44 +0000 |
commit | 2245ffea6e849eaca1e2a5d34597ecdb64c14b0e (patch) | |
tree | 9c21fe5c33c0a7dcd13d47102a3d0b8cf6f52f40 /sonar-ws/src | |
parent | 975cca52c3e24aa78001c052114a2f3decc5054e (diff) | |
download | sonarqube-2245ffea6e849eaca1e2a5d34597ecdb64c14b0e.tar.gz sonarqube-2245ffea6e849eaca1e2a5d34597ecdb64c14b0e.zip |
SONAR-20546 add inactiveRuleCount to `api/qualityprofiles/inheritance`
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualityprofiles.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto b/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto index 4d9cd5d44ac..2cc8bba8afb 100644 --- a/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto +++ b/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto @@ -100,6 +100,7 @@ message InheritanceWsResponse { optional int64 activeRuleCount = 4; optional int64 overridingRuleCount = 5; optional bool isBuiltIn = 6; + optional int64 inactiveRuleCount = 7; } } |