]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-14887 - Clarify qualityprofiles/changelog params
authorBelen Pruvost <belen.pruvost@sonarsource.com>
Mon, 28 Jun 2021 13:53:07 +0000 (15:53 +0200)
committersonartech <sonartech@sonarsource.com>
Tue, 29 Jun 2021 20:03:18 +0000 (20:03 +0000)
server/sonar-webserver-webapi/src/main/java/org/sonar/server/qualityprofile/ws/ChangelogAction.java

index 730ba626f2872f4aa0c3636a21d0f530792b34f7..9b675857871f341d6761b29811be3b60bc35081c 100644 (file)
@@ -78,12 +78,12 @@ public class ChangelogAction implements QProfileWsAction {
     wsAction.addPagingParams(50, MAX_PAGE_SIZE);
 
     wsAction.createParam(PARAM_SINCE)
-      .setDescription("Start date for the changelog. <br>" +
+      .setDescription("Start date for the changelog (inclusive). <br>" +
         "Either a date (server timezone) or datetime can be provided.")
       .setExampleValue("2017-10-19 or 2017-10-19T13:00:00+0200");
 
     wsAction.createParam(PARAM_TO)
-      .setDescription("End date for the changelog. <br>" +
+      .setDescription("End date for the changelog (exclusive, strictly before). <br>" +
         "Either a date (server timezone) or datetime can be provided.")
       .setExampleValue("2017-10-19 or 2017-10-19T13:00:00+0200");
   }