Changed the content length of forumthreads to 20k because Nemes
This commit was merged in pull request #11.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user