]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8134 add missing "since 6.2" on parameter "organization"
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 14 Oct 2016 07:59:06 +0000 (09:59 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 16 Oct 2016 17:10:45 +0000 (19:10 +0200)
server/sonar-server/src/main/java/org/sonar/server/permission/ws/PermissionsWsParametersBuilder.java

index 929e18bfee227f821192195cecb35ca7dd8cd33b..cb9eeaf04e09268c316e37816e8ff48fee2d48d1 100644 (file)
@@ -82,7 +82,8 @@ public class PermissionsWsParametersBuilder {
   public static void createOrganizationParameter(NewAction action) {
     action.createParam(PARAM_ORGANIZATION_KEY)
       .setDescription("Key of organization, used when group name is set")
-      .setExampleValue("my-org");
+      .setExampleValue("my-org")
+      .setSince("6.2");
   }
 
   public static void createGroupIdParameter(NewAction action) {