diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-08-18 15:25:00 +0200 |
---|---|---|
committer | Janos Gyerik <janos.gyerik@sonarsource.com> | 2017-09-12 11:34:47 +0200 |
commit | 8fb5771ff79502b2a60c24404ad3f778876e0e16 (patch) | |
tree | f534c417c3246d517a56fd728ddbf23e38086e2d /sonar-ws/src/main | |
parent | 0b11b278fde4daaf3c928a24a2aa3bab21a9982c (diff) | |
download | sonarqube-8fb5771ff79502b2a60c24404ad3f778876e0e16.tar.gz sonarqube-8fb5771ff79502b2a60c24404ad3f778876e0e16.zip |
SONAR-9616 Return branch in issues search
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index a7974885424..226691f512d 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -60,7 +60,6 @@ message Operation { } message Issue { - optional string organization = 29; optional string key = 1; optional string rule = 2; optional sonarqube.ws.commons.Severity severity = 3; @@ -105,6 +104,9 @@ message Issue { optional string closeDate = 26; optional sonarqube.ws.commons.RuleType type = 27; + + optional string organization = 29; + optional string branch = 30; } message Transitions { |