From 4e1bbcab2cfbe2c100d52e3f984a157d91a4f3ae Mon Sep 17 00:00:00 2001 From: Antoine Vigneau Date: Thu, 1 Feb 2024 11:09:42 +0100 Subject: SONAR-21508 Fix SSF-548 --- .../src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3