diff options
author | Léo Geoffroy <leo.geoffroy@sonarsource.com> | 2024-11-06 18:03:07 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-11-11 20:02:44 +0000 |
commit | e930060f740d74573323d7baed1bce5937bf4ac6 (patch) | |
tree | 13de53390a23884572fd99f4ebe65a5eeeb45b10 /sonar-ws/src/main | |
parent | 8fae1ede3f39a29731237c0d89b76f0b447d9547 (diff) | |
download | sonarqube-e930060f740d74573323d7baed1bce5937bf4ac6.tar.gz sonarqube-e930060f740d74573323d7baed1bce5937bf4ac6.zip |
SONAR-23363 Add impacts to issues/pull endpoint
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index 647d461b2b8..d7cd1d46f0c 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -29,9 +29,9 @@ option optimize_for = SPEED; // Response of GET api/issues/search message SearchWsResponse { reserved 5; - optional int64 total = 1 [deprecated=true]; - optional int64 p = 2 [deprecated=true]; - optional int32 ps = 3 [deprecated=true]; + optional int64 total = 1 [deprecated = true]; + optional int64 p = 2 [deprecated = true]; + optional int32 ps = 3 [deprecated = true]; optional sonarqube.ws.commons.Paging paging = 4; // Total amount of effort, only when the facet "total" is enabled @@ -275,6 +275,7 @@ message IssueLite { optional sonarqube.ws.commons.RuleType type = 6; optional Location mainLocation = 7; optional bool closed = 8; + repeated sonarqube.ws.commons.Impact impacts = 9; } |