]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-14316 Correct API documentation
authorWouter Admiraal <wouter.admiraal@sonarsource.com>
Tue, 9 Feb 2021 14:14:33 +0000 (15:14 +0100)
committersonartech <sonartech@sonarsource.com>
Thu, 11 Feb 2021 20:07:06 +0000 (20:07 +0000)
server/sonar-webserver-webapi/src/main/java/org/sonar/server/issue/ws/SearchAction.java
sonar-ws-generator/src/main/resources/snapshot-of-api.json

index 2852afebf3b0fb288c88769c9a3857b17aebb81c..6bb64d140a762699209591e5abe777f2c94a8bdc 100644 (file)
@@ -306,7 +306,7 @@ public class SearchAction implements IssuesWsAction {
     action.createParam(PARAM_CREATED_AFTER)
       .setDescription("To retrieve issues created after the given date (inclusive). <br>" +
         "Either a date (use '" + PARAM_TIMEZONE + "' attribute or it will default to server timezone) or datetime can be provided. <br>" +
-        "If this parameter is set, createdSince must not be set")
+        "If this parameter is set, createdInLast must not be set")
       .setExampleValue("2017-10-19 or 2017-10-19T13:00:00+0200");
     action.createParam(PARAM_CREATED_BEFORE)
       .setDescription("To retrieve issues created before the given date (exclusive). <br>" +
index c6f421ea15b4288692970fb5b0835921de3f95ef..bf174e9153cd473b5547eb23b62f76233729326d 100644 (file)
             },
             {
               "key": "createdAfter",
-              "description": "To retrieve issues created after the given date (inclusive). <br>Either a date (server timezone) or datetime can be provided. <br>If this parameter is set, createdSince must not be set",
+              "description": "To retrieve issues created after the given date (inclusive). <br>Either a date (server timezone) or datetime can be provided. <br>If this parameter is set, createdInLast must not be set",
               "required": false,
               "internal": false,
               "exampleValue": "2017-10-19 or 2017-10-19T13:00:00+0200"