From 38fe6f4b9ecc3fe0db208770288bdad66eca251c Mon Sep 17 00:00:00 2001 From: Antoine Vigneau Date: Thu, 22 Oct 2020 09:15:15 +0200 Subject: [PATCH] Fix tag filtering docs for the WS api/components/search_projects --- .../org/sonar/server/component/ws/SearchProjectsAction.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/sonar-webserver-webapi/src/main/java/org/sonar/server/component/ws/SearchProjectsAction.java b/server/sonar-webserver-webapi/src/main/java/org/sonar/server/component/ws/SearchProjectsAction.java index 04fd9bb7ce7..3f2a3bbe556 100644 --- a/server/sonar-webserver-webapi/src/main/java/org/sonar/server/component/ws/SearchProjectsAction.java +++ b/server/sonar-webserver-webapi/src/main/java/org/sonar/server/component/ws/SearchProjectsAction.java @@ -205,10 +205,10 @@ public class SearchProjectsAction implements ComponentsWsAction { "
  • to filter on several languages you must use 'language IN (java, js)'
  • " + HTML_UL_END_TAG + "Use the WS api/languages/list to find the key of a language.
    " + - "To filter on tags use the 'tag' keyword:" + + "To filter on tags use the 'tags' keyword:" + HTML_UL_START_TAG + - "
  • to filter on one tag you can use tag = finance
  • " + - "
  • to filter on several tags you must use tag in (offshore, java)
  • " + + "
  • to filter on one tag you can use tags = finance
  • " + + "
  • to filter on several tags you must use tags in (offshore, java)
  • " + HTML_UL_END_TAG + "To filter on a qualifier use key 'qualifier'. Only the '=' operator can be used.
    " + HTML_POSSIBLE_VALUES_TEXT + -- 2.39.5