diff options
author | Antoine Vigneau <antoine.vigneau@sonarsource.com> | 2024-02-01 11:09:42 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-02-01 20:02:46 +0000 |
commit | 4e1bbcab2cfbe2c100d52e3f984a157d91a4f3ae (patch) | |
tree | 495748a4d11af24873d28856499e4933deeef97e | |
parent | 310b2e4b1ae3c4b1b2fdb678cca9d3f249a814f9 (diff) | |
download | sonarqube-4e1bbcab2cfbe2c100d52e3f984a157d91a4f3ae.tar.gz sonarqube-4e1bbcab2cfbe2c100d52e3f984a157d91a4f3ae.zip |
SONAR-21508 Fix SSF-548
-rwxr-xr-x | server/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java | 4 |
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) |