]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7216 Update allow users to signup description
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 3 Feb 2016 14:45:43 +0000 (15:45 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 3 Feb 2016 16:26:19 +0000 (17:26 +0100)
sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java

index ff4ed06effaa9a543707864310e6910563e1dc5d..aaf797760ae18cc968c9242427655284ed9b30e5 100644 (file)
@@ -36,8 +36,8 @@ class SecurityProperties {
 
       PropertyDefinition.builder(CoreProperties.CORE_ALLOW_USERS_TO_SIGNUP_PROPERTY)
         .defaultValue(Boolean.toString(CoreProperties.CORE_ALLOW_USERS_TO_SIGNUP_DEAULT_VALUE))
-        .name("Allow users to sign up online")
-        .description("Users can sign up online.")
+        .name("Activate sign up for local account")
+        .description("Allow users to sign up online for a local account. For that purpose, a \"Sign Up\" link will be available in the \"Login\" page.")
         .type(PropertyType.BOOLEAN)
         .category(CoreProperties.CATEGORY_SECURITY)
         .build(),