From: Jean-Baptiste Vilain Date: Fri, 28 Jun 2013 15:32:36 +0000 (+0200) Subject: SONAR-4412 Added support of group 'Anyone' X-Git-Tag: 3.7~320 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ea7c393a73721198e80c2ad9a38097463fcdfccb;p=sonarqube.git SONAR-4412 Added support of group 'Anyone' --- 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'