aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2015-10-05 11:35:14 +0200
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2015-10-05 14:02:47 +0200
commitc3419c08d143160a17ecfd60af90033f5c7c43a6 (patch)
tree2a468277b284b7baad8031afa43a669b24e1e04c
parent4444b32ef5b228c734e8d962acab0b3c30afb617 (diff)
downloadsonarqube-c3419c08d143160a17ecfd60af90033f5c7c43a6.tar.gz
sonarqube-c3419c08d143160a17ecfd60af90033f5c7c43a6.zip
SONAR-6506 RoR WS updatecenter/installed_plugins becomes internal
-rw-r--r--server/sonar-server/src/main/java/org/sonar/server/updatecenter/ws/UpdateCenterWs.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-server/src/main/java/org/sonar/server/updatecenter/ws/UpdateCenterWs.java b/server/sonar-server/src/main/java/org/sonar/server/updatecenter/ws/UpdateCenterWs.java
index ca1d02df2ff..07d3f0b1718 100644
--- a/server/sonar-server/src/main/java/org/sonar/server/updatecenter/ws/UpdateCenterWs.java
+++ b/server/sonar-server/src/main/java/org/sonar/server/updatecenter/ws/UpdateCenterWs.java
@@ -42,6 +42,7 @@ public class UpdateCenterWs implements WebService {
.setDescription("Get the list of all the plugins installed on the SonarQube instance")
.setSince("2.10")
.setHandler(RailsHandler.INSTANCE)
+ .setInternal(true)
.setResponseExample(Resources.getResource(this.getClass(), "example-installed_plugins.json"));
RailsHandler.addFormatParam(action);
}