diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-11-23 16:38:24 +0100 |
---|---|---|
committer | Eric Hartmann <hartmann.eric@gmail.Com> | 2017-12-04 13:44:55 +0100 |
commit | f040e55227e5a77714222a61c16c6a158f99a51f (patch) | |
tree | 9358003725adc3d83eacd29c6bff90b8ac347d4a /sonar-ws/src | |
parent | c51cc790961bddc08070346de50e2aaaee7484a4 (diff) | |
download | sonarqube-f040e55227e5a77714222a61c16c6a158f99a51f.tar.gz sonarqube-f040e55227e5a77714222a61c16c6a158f99a51f.zip |
SONAR-10087 Use protobuf in api/qualitygates/rename
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualitygates.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto index 16b4d7e9671..e7355755459 100644 --- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto +++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto @@ -73,7 +73,7 @@ message GetByProjectResponse { } message QualityGate { - optional string id = 1; + optional int64 id = 1; optional string name = 2; optional bool default = 3; } |