aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-github/src
diff options
context:
space:
mode:
authorViktor Vorona <viktor.vorona@sonarsource.com>2023-09-15 15:15:59 +0200
committersonartech <sonartech@sonarsource.com>2023-09-15 20:03:06 +0000
commite40fee8e8870b40e1b52c963a110100764b75770 (patch)
tree081c9604c10b5147c56e40ed940149eede296f75 /server/sonar-auth-github/src
parente77ef17d27c03b09bce4f2165c397281819584f7 (diff)
downloadsonarqube-e40fee8e8870b40e1b52c963a110100764b75770.tar.gz
sonarqube-e40fee8e8870b40e1b52c963a110100764b75770.zip
SONAR-20392 Update wording
Diffstat (limited to 'server/sonar-auth-github/src')
-rw-r--r--server/sonar-auth-github/src/main/java/org/sonar/auth/github/GitHubSettings.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/server/sonar-auth-github/src/main/java/org/sonar/auth/github/GitHubSettings.java b/server/sonar-auth-github/src/main/java/org/sonar/auth/github/GitHubSettings.java
index bd93b13cfbb..23651360fb2 100644
--- a/server/sonar-auth-github/src/main/java/org/sonar/auth/github/GitHubSettings.java
+++ b/server/sonar-auth-github/src/main/java/org/sonar/auth/github/GitHubSettings.java
@@ -227,7 +227,8 @@ public class GitHubSettings {
.build(),
PropertyDefinition.builder(GROUPS_SYNC)
.name("Synchronize teams as groups")
- .description("For each team they belong to, the user will be associated to a group named 'Organization/Team' (if it exists) in SonarQube.")
+ .description("Synchronize GitHub team with SonarQube group memberships when users log in to SonarQube."
+ + " For each GitHub team they belong to, users will be associated to a group of the same name if it exists in SonarQube.")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.type(BOOLEAN)
@@ -263,8 +264,8 @@ public class GitHubSettings {
.build(),
PropertyDefinition.builder(PROVISION_VISIBILITY)
.name("Provision project visibility")
- .description("Change project visibility based on GitHub repository visibility. If disabled, every provisioned project will be private and will be seen only for those users"
- + " that have explicit GitHub permissions for the according repository.")
+ .description("Change project visibility based on GitHub repository visibility. If disabled, every provisioned project will be private in SonarQube and visible only"
+ + " to users with explicit GitHub permissions for the corresponding repository. Changes take effect at the next synchronization.")
.type(BOOLEAN)
.category(CATEGORY)
.subCategory(SUBCATEGORY)