aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2015-04-02 16:42:56 +0200
committerFabrice Bellingard <bellingard@gmail.com>2015-04-02 16:42:56 +0200
commit9d98b11d4ed298aa9a6c312f9f34b51f32bfd481 (patch)
tree21db8882937a7173fbc0de7a9a1089fcf73e026a
parenta18f0a986d74edad8d61d188334910093071c2a8 (diff)
downloadsonarqube-9d98b11d4ed298aa9a6c312f9f34b51f32bfd481.tar.gz
sonarqube-9d98b11d4ed298aa9a6c312f9f34b51f32bfd481.zip
Add missing field on JSON example response
-rw-r--r--server/sonar-server/src/main/resources/org/sonar/server/qualityprofile/ws/example-search.json2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/sonar-server/src/main/resources/org/sonar/server/qualityprofile/ws/example-search.json b/server/sonar-server/src/main/resources/org/sonar/server/qualityprofile/ws/example-search.json
index eeb62bd60e7..9c796636896 100644
--- a/server/sonar-server/src/main/resources/org/sonar/server/qualityprofile/ws/example-search.json
+++ b/server/sonar-server/src/main/resources/org/sonar/server/qualityprofile/ws/example-search.json
@@ -22,6 +22,7 @@
"key": "my-company-profile-java-23456",
"name": "My Company Profile",
"language": "java",
+ "languageName": "Java",
"isInherited": false,
"isDefault": true,
"activeRuleCount": 42
@@ -30,6 +31,7 @@
"key": "sonar-way-python-01234",
"name": "Sonar way",
"language": "py",
+ "languageName": "Python",
"isInherited": false,
"activeRuleCount": 125
}