aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-bitbucket
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:47 +0000
commite355dab69c2383fd3fac5c6d373bc39af8a5573f (patch)
treeb0c80b8f4e9858cd2727724bba67ae93c24b338d /server/sonar-auth-bitbucket
parent6626cf4f2a82b559e2f2dd398df926e065ae3d5f (diff)
downloadsonarqube-e355dab69c2383fd3fac5c6d373bc39af8a5573f.tar.gz
sonarqube-e355dab69c2383fd3fac5c6d373bc39af8a5573f.zip
SONAR-21508 Fix SSF-548
Diffstat (limited to 'server/sonar-auth-bitbucket')
-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 79cc551d544..ee05ce999bb 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)