diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-07-23 17:51:19 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-07-23 17:51:19 +0200 |
commit | 4710734b9e7f414c9eb4229ace01469733278ac2 (patch) | |
tree | ae9bb052276fea7767a5740ee7050646c228f65b /sonar-server | |
parent | c2f09598513b1883198a9cda86495335f9dc4932 (diff) | |
download | sonarqube-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.rb | 2 |
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'} |