From 982927e716d5e6a0659c7a7157c3793bef761e76 Mon Sep 17 00:00:00 2001 From: Teryk Bellahsene Date: Tue, 2 Aug 2016 16:22:59 +0200 Subject: [PATCH] SONAR-7928 Update api/components description --- .../main/java/org/sonar/server/component/ws/ComponentsWs.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java b/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java index 94ecff8f704..12296938544 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java +++ b/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java @@ -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.
" + + "Update a project or module key."); for (ComponentsWsAction action : actions) { action.define(controller); -- 2.39.5