Merge commit '00fc8b3fcd10860abb70a57fb6aaab3c476259f2'

This commit is contained in:
jomo
2016-10-14 10:58:39 +02:00

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