diff options
author | Michal Duda <michal.duda@sonarsource.com> | 2020-12-10 18:30:19 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-12-22 20:09:35 +0000 |
commit | 6ca1fa59bc879764e88d47677304d18709daa080 (patch) | |
tree | 96b7864d69b57d6ce704b9a9cb063a79f6732cb9 /sonar-ws/src/main/protobuf | |
parent | 9ae766e0e86ae86d2bff494b68af6c17bf329a61 (diff) | |
download | sonarqube-6ca1fa59bc879764e88d47677304d18709daa080.tar.gz sonarqube-6ca1fa59bc879764e88d47677304d18709daa080.zip |
SONAR-13999 remove orgs from hotspots WS
Diffstat (limited to 'sonar-ws/src/main/protobuf')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-hotspots.proto | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-hotspots.proto b/sonar-ws/src/main/protobuf/ws-hotspots.proto index 36ae0002267..0fc8ad9ad46 100644 --- a/sonar-ws/src/main/protobuf/ws-hotspots.proto +++ b/sonar-ws/src/main/protobuf/ws-hotspots.proto @@ -72,14 +72,13 @@ message ShowWsResponse { } message Component { - optional string organization = 1; - optional string key = 2; - optional string qualifier = 3; - optional string name = 4; - optional string longName = 5; - optional string path = 6; - optional string branch = 7; - optional string pullRequest = 8; + optional string key = 1; + optional string qualifier = 2; + optional string name = 3; + optional string longName = 4; + optional string path = 5; + optional string branch = 6; + optional string pullRequest = 7; } message Rule { |