diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-10-17 22:45:41 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-10-18 20:20:55 +0200 |
commit | bee3ce3d74bc9143c56a3aeb68dcbb4ba3d06513 (patch) | |
tree | 3fc42d200fe28fe12a9934ba72c3505bf1f6cf6d /sonar-core/src | |
parent | 36d1270ef32ec03387908867ff4cf4e3e1164d14 (diff) | |
download | sonarqube-bee3ce3d74bc9143c56a3aeb68dcbb4ba3d06513.tar.gz sonarqube-bee3ce3d74bc9143c56a3aeb68dcbb4ba3d06513.zip |
Fix bugs, mainly about type casts
Diffstat (limited to 'sonar-core/src')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java | 2 |
1 files changed, 1 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 5836bd416f2..1bf16eb7edc 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 @@ -38,7 +38,7 @@ class SecurityProperties { .defaultValue(Boolean.toString(CoreProperties.CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE)) .name("Force user authentication") .description( - "Forcing user authentication prevents anonymous users from accessing the SonarQube UI, or project data via the Web API." + "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) |