Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-19 14:09:23 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-19 14:09:23 +0400
commit3a1022e3818e2a56e151eca22f25379aa5521866 (patch)
tree36ca7955eb565cb98b5cbee8f9cc9ab3aeb20203 /app/models/issue.rb
parent569a88a456a5f01fbef6f5280b6982c3db8e2a72 (diff)
Increase Issue description size to 10k. Fixes #2545
Diffstat (limited to 'app/models/issue.rb')
-rw-r--r--app/models/issue.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb
index 7381136c979..40a6c01577d 100644
--- a/app/models/issue.rb
+++ b/app/models/issue.rb
@@ -24,7 +24,7 @@ class Issue < ActiveRecord::Base
acts_as_taggable_on :labels
- validates :description, length: { within: 0..2000 }
+ validates :description, length: { within: 0..10000 }
def self.open_for(user)
opened.assigned(user)