Procházet zdrojové kódy

SONAR-14887 - Clarify qualityprofiles/changelog params

tags/9.0.0.45539
Belen Pruvost před 2 roky
rodič
revize
8591a336f0

+ 2
- 2
server/sonar-webserver-webapi/src/main/java/org/sonar/server/qualityprofile/ws/ChangelogAction.java Zobrazit soubor

@@ -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");
}

Načítá se…
Zrušit
Uložit