]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-10415 Update description of sonar.forceAuthentication
authorPascal Mugnier <pascal.mugnier@sonarsource.com>
Tue, 8 May 2018 08:49:05 +0000 (10:49 +0200)
committerSonarTech <sonartech@sonarsource.com>
Thu, 24 May 2018 18:20:47 +0000 (20:20 +0200)
sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java

index e03b22f6e93b8421b71c58f96e4ff13b056fc2fc..5836bd416f2a0bda3fe3d390ec24a980b3411951 100644 (file)
@@ -37,7 +37,9 @@ class SecurityProperties {
       PropertyDefinition.builder(CoreProperties.CORE_FORCE_AUTHENTICATION_PROPERTY)
         .defaultValue(Boolean.toString(CoreProperties.CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE))
         .name("Force user authentication")
-        .description("Forcing user authentication stops un-logged users to access SonarQube.")
+        .description(
+          "Forcing user authentication prevents anonymous users from accessing the SonarQube UI, or project data via the Web API."
+            + "Some specific read-only Web APIs, including those required to prompt authentication, are still available anonymously.")
         .type(PropertyType.BOOLEAN)
         .category(CoreProperties.CATEGORY_SECURITY)
         .build());