aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/src/main
diff options
context:
space:
mode:
authorMichal Duda <michal.duda@sonarsource.com>2020-12-14 21:18:50 +0100
committersonartech <sonartech@sonarsource.com>2020-12-22 20:09:36 +0000
commita8cd264afd2a7532ee0f3d9809db2d5cb8c32e6e (patch)
tree66ff12305b5060bc93b844dae11649540de14b3f /sonar-core/src/main
parent31c59b718a3c074deb51bfadf8152fb6317a826a (diff)
downloadsonarqube-a8cd264afd2a7532ee0f3d9809db2d5cb8c32e6e.tar.gz
sonarqube-a8cd264afd2a7532ee0f3d9809db2d5cb8c32e6e.zip
SONAR-13999 remove organizations from user WS
Diffstat (limited to 'sonar-core/src/main')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java
index b473fe63ffc..398c934a601 100644
--- a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java
+++ b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java
@@ -36,7 +36,13 @@ public class CorePropertyDefinitions {
public static final String SONAR_ANALYSIS = "sonar.analysis.";
private static final String CATEGORY_ORGANIZATIONS = "organizations";
+
+ //TODO remove
+ @Deprecated
public static final String ORGANIZATIONS_ANYONE_CAN_CREATE = "sonar.organizations.anyoneCanCreate";
+
+ //TODO remove
+ @Deprecated
public static final String ORGANIZATIONS_CREATE_PERSONAL_ORG = "sonar.organizations.createPersonalOrg";
public static final String DISABLE_NOTIFICATION_ON_BUILT_IN_QPROFILES = "sonar.builtInQualityProfiles.disableNotificationOnUpdate";
@@ -184,13 +190,6 @@ public class CorePropertyDefinitions {
.category(CATEGORY_ORGANIZATIONS)
.type(BOOLEAN)
.hidden()
- .build(),
- PropertyDefinition.builder(ORGANIZATIONS_CREATE_PERSONAL_ORG)
- .name("Create an organization for each new user.")
- .defaultValue(Boolean.toString(false))
- .category(CATEGORY_ORGANIZATIONS)
- .type(BOOLEAN)
- .hidden()
.build()));
return defs;
}