From: Belen Pruvost Date: Mon, 28 Jun 2021 13:53:07 +0000 (+0200) Subject: SONAR-14887 - Clarify qualityprofiles/changelog params X-Git-Tag: 9.0.0.45539~32 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8591a336f044d9746601eef53ba84dbe3548ed42;p=sonarqube.git SONAR-14887 - Clarify qualityprofiles/changelog params --- diff --git a/server/sonar-webserver-webapi/src/main/java/org/sonar/server/qualityprofile/ws/ChangelogAction.java b/server/sonar-webserver-webapi/src/main/java/org/sonar/server/qualityprofile/ws/ChangelogAction.java index 730ba626f28..9b675857871 100644 --- a/server/sonar-webserver-webapi/src/main/java/org/sonar/server/qualityprofile/ws/ChangelogAction.java +++ b/server/sonar-webserver-webapi/src/main/java/org/sonar/server/qualityprofile/ws/ChangelogAction.java @@ -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.
" + + .setDescription("Start date for the changelog (inclusive).
" + "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.
" + + .setDescription("End date for the changelog (exclusive, strictly before).
" + "Either a date (server timezone) or datetime can be provided.") .setExampleValue("2017-10-19 or 2017-10-19T13:00:00+0200"); }