aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2016-08-24 12:06:25 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2016-08-24 12:09:41 +0200
commitad8aa9a307a5680bea5433540d40cd75a40c94dc (patch)
tree2c64763fa3e42cb261c1e55db6f6ecc34a95078b /sonar-ws
parent556f0c365d9e644d1bb8f4d37cc89458aa940f61 (diff)
downloadsonarqube-ad8aa9a307a5680bea5433540d40cd75a40c94dc.tar.gz
sonarqube-ad8aa9a307a5680bea5433540d40cd75a40c94dc.zip
SONAR-7968 Return field description in /api/settings/list_definitions WS
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-settings.proto7
1 files changed, 4 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-settings.proto b/sonar-ws/src/main/protobuf/ws-settings.proto
index f3a38e90b93..76da8a6910c 100644
--- a/sonar-ws/src/main/protobuf/ws-settings.proto
+++ b/sonar-ws/src/main/protobuf/ws-settings.proto
@@ -45,9 +45,10 @@ message Definition {
message Field {
optional string key = 1;
optional string name = 2;
- optional Type type = 3;
- optional int32 indicativeSize = 4;
- repeated string options = 5;
+ optional string description = 3;
+ optional Type type = 4;
+ optional int32 indicativeSize = 5;
+ repeated string options = 6;
}
enum Type {