diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-02-03 15:45:43 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-02-03 17:26:19 +0100 |
commit | 3d1d9735f28467d1cb352d4fcbf6b6c7b1a5ce9a (patch) | |
tree | 508852598b7c17e18938237d4e29b47f50925979 | |
parent | 6ef5fc53e4173b52f958469f42647dd061d77640 (diff) | |
download | sonarqube-3d1d9735f28467d1cb352d4fcbf6b6c7b1a5ce9a.tar.gz sonarqube-3d1d9735f28467d1cb352d4fcbf6b6c7b1a5ce9a.zip |
SONAR-7216 Update allow users to signup description
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java b/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java index ff4ed06effa..aaf797760ae 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java +++ b/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java @@ -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(), |