]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4412 Added support of group 'Anyone'
authorJean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com>
Fri, 28 Jun 2013 15:32:36 +0000 (17:32 +0200)
committerJean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com>
Fri, 28 Jun 2013 15:32:36 +0000 (17:32 +0200)
sonar-server/src/main/webapp/WEB-INF/app/controllers/api/permissions_controller.rb

index f79f552336df4d6de03ba7922739ac51eb11fd6c..ebff577ef20cec4d441f0b041c33b8822b7c6d8b 100644 (file)
@@ -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'