aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorJean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com>2013-07-23 17:51:19 +0200
committerJean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com>2013-07-23 17:51:19 +0200
commit4710734b9e7f414c9eb4229ace01469733278ac2 (patch)
treeae9bb052276fea7767a5740ee7050646c228f65b /sonar-server
parentc2f09598513b1883198a9cda86495335f9dc4932 (diff)
downloadsonarqube-4710734b9e7f414c9eb4229ace01469733278ac2.tar.gz
sonarqube-4710734b9e7f414c9eb4229ace01469733278ac2.zip
SONAR-4453 Set the limit to 500 projects max
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb
index 8c935f270ee..d49b116980f 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb
@@ -21,7 +21,7 @@ class RolesController < ApplicationController
helper RolesHelper
SECTION=Navigation::SECTION_CONFIGURATION
- BULK_LIMIT=1
+ BULK_LIMIT=500
before_filter :admin_required
verify :method => :post, :only => [:set_users, :set_groups], :redirect_to => {:action => 'global'}