Changed the content length of forumthreads to 20k because Nemes

This commit was merged in pull request #11.
This commit is contained in:
Jonas Folvik
2016-10-03 22:58:27 +02:00
parent e0ac5fac13
commit 00fc8b3fcd

View File

@@ -11,7 +11,7 @@ class Forumthread < ActiveRecord::Base
validates_presence_of :title, :author, :forum
validates_presence_of :content
validates_length_of :content, in: 5..10000
validates_length_of :content, in: 5..20000
accepts_nested_attributes_for :threadreplies
@@ -65,4 +65,4 @@ class Forumthread < ActiveRecord::Base
def to_param
[id, to_s.parameterize].join("-")
end
end
end