Browse Source

SONAR-21508 Fix SSF-548

tags/10.4.0.87286
Antoine Vigneau 3 months ago
parent
commit
e355dab69c

+ 3
- 1
server/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java View File

@@ -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)

Loading…
Cancel
Save