diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2021-10-15 09:03:57 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-10-15 20:03:25 +0000 |
commit | dc65920e6e836333976f91031b3dbc555199edea (patch) | |
tree | 2078d8092e6195d7d2d5f15824e97470775be8d6 /server/sonar-auth-bitbucket | |
parent | c93051ebb9c532d78c774238f950509d67460571 (diff) | |
download | sonarqube-dc65920e6e836333976f91031b3dbc555199edea.tar.gz sonarqube-dc65920e6e836333976f91031b3dbc555199edea.zip |
SONAR-15428 Clarify that we support workspace names and slugs
Diffstat (limited to 'server/sonar-auth-bitbucket')
-rwxr-xr-x | server/sonar-auth-bitbucket/src/main/java/org/sonar/auth/bitbucket/BitbucketSettings.java | 2 |
1 files changed, 1 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 687cf70973e..f017f6a311b 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 @@ -116,7 +116,7 @@ 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.") + .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}).") .category(CoreProperties.CATEGORY_ALM_INTEGRATION) .subCategory(SUBCATEGORY) .multiValues(true) |