From a03d7bccfb50673b56b4fde9370fa4a7ecd5c5b9 Mon Sep 17 00:00:00 2001 From: Pascal Mugnier Date: Tue, 8 May 2018 10:49:05 +0200 Subject: [PATCH] SONAR-10415 Update description of sonar.forceAuthentication --- .../main/java/org/sonar/core/config/SecurityProperties.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()); -- 2.39.5