diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-06-28 17:32:36 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-06-28 17:32:36 +0200 |
commit | ea7c393a73721198e80c2ad9a38097463fcdfccb (patch) | |
tree | cf94826cb2b2fc2286617c2fa71e3f371e8152a8 | |
parent | 3694e5bd318d541215887a94f099ac28d39358f5 (diff) | |
download | sonarqube-ea7c393a73721198e80c2ad9a38097463fcdfccb.tar.gz sonarqube-ea7c393a73721198e80c2ad9a38097463fcdfccb.zip |
SONAR-4412 Added support of group 'Anyone'
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb index f79f552336d..ebff577ef20 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb @@ -30,7 +30,7 @@ class Api::PermissionsController < Api::ApiController # 'permission' is the key of the permission to add # 'user' is the user identifier (login) # OR - # 'group' is the group identifier (name) + # 'group' is the group identifier (group name or 'anyone') # # -- Example # curl -X POST -v -u admin:admin 'http://localhost:9000/api/permissions/add?permission=dashboard_sharing&user=new_user' @@ -59,7 +59,7 @@ class Api::PermissionsController < Api::ApiController # 'permission' is the key of the permission to add # 'user' is the user identifier (login) # OR - # 'group' is the group identifier (name) + # 'group' is the group identifier (group name or 'anyone') # # -- Example # curl -X POST -v -u admin:admin 'http://localhost:9000/api/permissions/remove?permission=dashboard_sharing&user=new_user' |