public static final String SONAR_ANALYSIS_DETECTEDSCM = "sonar.analysis.detectedscm";
public static final String SONAR_ANALYSIS_DETECTEDCI = "sonar.analysis.detectedci";
- 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";
public static final String PLUGINS_RISK_CONSENT = "sonar.plugins.risk.consent";
.category(CoreProperties.CATEGORY_EXCLUSIONS)
.subCategory(CoreProperties.SUBCATEGORY_DUPLICATIONS_EXCLUSIONS)
.multiValues(true)
- .build(),
-
- // ORGANIZATIONS
- PropertyDefinition.builder(ORGANIZATIONS_ANYONE_CAN_CREATE)
- .name("Allow any authenticated user to create organizations.")
- .defaultValue(Boolean.toString(false))
- .category(CATEGORY_ORGANIZATIONS)
- .type(BOOLEAN)
- .hidden()
.build()));
+
return defs;
}
}