aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Vigneau <antoine.vigneau@sonarsource.com>2024-02-01 11:09:42 +0100
committersonartech <sonartech@sonarsource.com>2024-02-01 20:02:46 +0000
commit4e1bbcab2cfbe2c100d52e3f984a157d91a4f3ae (patch)
tree495748a4d11af24873d28856499e4933deeef97e
parent310b2e4b1ae3c4b1b2fdb678cca9d3f249a814f9 (diff)
downloadsonarqube-4e1bbcab2cfbe2c100d52e3f984a157d91a4f3ae.tar.gz
sonarqube-4e1bbcab2cfbe2c100d52e3f984a157d91a4f3ae.zip
SONAR-21508 Fix SSF-548
-rwxr-xr-xserver/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java b/server/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java
index e3b03da3360..6de3810e167 100755
--- a/server/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java
+++ b/server/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java
@@ -114,7 +114,9 @@ public class BitbucketSettings {
.build(),
PropertyDefinition.builder(WORKSPACE_ALLOWED_LIST)
.name("Workspaces")
- .description("Only members of at least one of these workspace will be able to authenticate. Keep empty to disable workspace restriction. You can use either the workspace name, or the workspace slug (ex: https://bitbucket.org/{workspace-slug}).")
+ .description("Only members of at least one of these workspace will be able to authenticate. Keep empty to disable workspace restriction. " +
+ "You can use either the workspace name, or the workspace slug (ex: https://bitbucket.org/{workspace-slug}). " +
+ "⚠ if not set, any BitBucket user will be able to authenticate to the server.")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.multiValues(true)