]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/issue_comment.rb
Create invalid_char validators and apply to models
[rails.git] / app / models / issue_comment.rb
index 3a5894cb3e1b4cab5ee1a91ed077164ed2faf77f..2fe96f4728857271b031dc4579797b630196aacf 100644 (file)
@@ -24,7 +24,7 @@ class IssueComment < ActiveRecord::Base
   belongs_to :issue
   belongs_to :user
 
-  validates :body, :presence => true
+  validates :body, :presence => true, :invalid_chars => true
   validates :user, :presence => true
   validates :issue, :presence => true
 end