]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7928 Update api/components description
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Tue, 2 Aug 2016 14:22:59 +0000 (16:22 +0200)
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Fri, 5 Aug 2016 12:31:15 +0000 (14:31 +0200)
server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java

index 94ecff8f7043c6865c858d68d2c000f28fc4feec..12296938544e0fe444756b133084713fb45b3ae3 100644 (file)
@@ -39,7 +39,8 @@ public class ComponentsWs implements WebService {
   public void define(Context context) {
     NewController controller = context.createController("api/components")
       .setSince("4.2")
-      .setDescription("Get information about a component (file, directory, project, ...) and its ancestors or children.");
+      .setDescription("Get information about a component (file, directory, project, ...) and its ancestors or descendants.<br>" +
+        "Update a project or module key.");
 
     for (ComponentsWsAction action : actions) {
       action.define(controller);