diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-01-28 14:43:47 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-01-28 14:43:47 +0100 |
commit | c5543baa89fc7ccfb9b4bd56a40d8d8419c5e6a1 (patch) | |
tree | c2d935d673e5b591579083d7647bac39c56c2a01 | |
parent | 5864974b1769cd11452b580af29cf09b21f2b89c (diff) | |
download | sonarqube-c5543baa89fc7ccfb9b4bd56a40d8d8419c5e6a1.tar.gz sonarqube-c5543baa89fc7ccfb9b4bd56a40d8d8419c5e6a1.zip |
SONAR-4874 Document the "Anyone" group on the "Groups" page
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties | 1 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties index 83d3f4fe0b3..333f865e7ab 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties @@ -390,6 +390,7 @@ users.page=Users users.page.description=Create and administer individual users. user_groups.page=Groups user_groups.page.description=Create and administer groups of users. +user_groups.anyone.description=Anybody (authenticated or not) who browses the application belongs to this group update_center.page=Update Center update_center.page.description=Install, uninstall and delete plugins. You can also download SonarQube updates from the System Updates tab on this page. project_quality_profiles.page=Quality Profiles diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb index 19b2ba6acb2..f33c9c83f94 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb @@ -24,7 +24,13 @@ <th class="operations nosort" nowrap>Operations</th> </tr> </thead> - <tbody > + <tbody> + <tr id="group-anyone"> + <td class="left"><%= h 'Anyone' -%></td> + <td class="left" style="word-break:break-all"><%= message('user_groups.anyone.description') -%></td> + <td class="left"> </td> + <td> </td> + </tr> <% @groups.each do |group| %> <tr id="group-<%= group.name.parameterize -%>"> <td class="left"><%= h group.name -%></td> |