From ea7c393a73721198e80c2ad9a38097463fcdfccb Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Vilain Date: Fri, 28 Jun 2013 17:32:36 +0200 Subject: [PATCH] SONAR-4412 Added support of group 'Anyone' --- .../WEB-INF/app/controllers/api/permissions_controller.rb | 4 ++-- 1 file 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' -- 2.39.5