diff options
author | Guillaume Jambet <guillaume.jambet@sonarsource.com> | 2018-04-13 11:25:59 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-04-26 20:20:51 +0200 |
commit | 69cee931cd9c181019812107637d9686d8b13ef1 (patch) | |
tree | c69c9d5cb20713337e998c99691aaf84eeadf09a /sonar-ws | |
parent | 4754c43643ba805ebf63ee95b2b9214c8ddfd0d3 (diff) | |
download | sonarqube-69cee931cd9c181019812107637d9686d8b13ef1.tar.gz sonarqube-69cee931cd9c181019812107637d9686d8b13ef1.zip |
SONAR-10577 return if an issue is from an external analyser in issue search
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index 93b99eb4a3c..e55bd9864db 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -157,6 +157,8 @@ message Issue { optional string organization = 29; optional string branch = 30; optional string pullRequest = 32; + + optional string externalRuleEngine = 33; } message Transitions { |