diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-08-11 18:51:38 +0200 |
---|---|---|
committer | Janos Gyerik <janos.gyerik@sonarsource.com> | 2017-09-12 10:59:56 +0200 |
commit | c482c5f6b1ee3ffc78c6592bfafe1743b9cf6e3b (patch) | |
tree | 86e74acb38df8b060fd295fb98d10405ac36cf24 /sonar-ws | |
parent | ffe3afb5e797c8ac7a06f5a0b95d398975ce8a73 (diff) | |
download | sonarqube-c482c5f6b1ee3ffc78c6592bfafe1743b9cf6e3b.tar.gz sonarqube-c482c5f6b1ee3ffc78c6592bfafe1743b9cf6e3b.zip |
SONAR-9616 Add bugs, vulnerabilities and code smells in branches list
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projectbranches.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectbranches.proto b/sonar-ws/src/main/protobuf/ws-projectbranches.proto index 3b32bc08fb8..915e983e788 100644 --- a/sonar-ws/src/main/protobuf/ws-projectbranches.proto +++ b/sonar-ws/src/main/protobuf/ws-projectbranches.proto @@ -43,9 +43,9 @@ message Branch { // Quality gate status is only present for long living branch optional string qualityGateStatus = 1; // Merge bugs, vulnerabilities and codeSmell are only present for short living branch - optional string bugs = 2; - optional string vulnerabilities = 3; - optional string codeSmell = 4; + optional int32 bugs = 2; + optional int32 vulnerabilities = 3; + optional int32 codeSmells = 4; } enum BranchType { |