summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/models/group.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/models/group.rb b/sonar-server/src/main/webapp/WEB-INF/app/models/group.rb
index 8537c5d4224..7d65f60e3ba 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/models/group.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/models/group.rb
@@ -23,7 +23,7 @@ class Group < ActiveRecord::Base
has_many :group_roles, :dependent => :delete_all
validates_presence_of :name
- validates_length_of :name, :within => 1..40
+ validates_length_of :name, :within => 1..255
validates_length_of :description, :within => 0..200
validates_uniqueness_of :name