diff options
-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 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) |