aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorPascal Mugnier <pascal.mugnier@sonarsource.com>2018-05-08 10:49:05 +0200
committerSonarTech <sonartech@sonarsource.com>2018-05-24 20:20:47 +0200
commita03d7bccfb50673b56b4fde9370fa4a7ecd5c5b9 (patch)
tree11b972b710b3fdbfbff74d8ef513e831aad543f7 /sonar-core
parent8613e4e711933777c1f7ecc32f941591f1a1b64f (diff)
downloadsonarqube-a03d7bccfb50673b56b4fde9370fa4a7ecd5c5b9.tar.gz
sonarqube-a03d7bccfb50673b56b4fde9370fa4a7ecd5c5b9.zip
SONAR-10415 Update description of sonar.forceAuthentication
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java4
1 files changed, 3 insertions, 1 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 e03b22f6e93..5836bd416f2 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
@@ -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());