X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e660e609661edadc1ed5ad49d6e83e936b2f91cd..8fa9763281c5bcd4e9a88cfa0597e4e9a86963e7:/app/models/diary_comment.rb diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb index b915e027a..5ace3d158 100644 --- a/app/models/diary_comment.rb +++ b/app/models/diary_comment.rb @@ -5,7 +5,11 @@ class DiaryComment < ActiveRecord::Base validates_presence_of :body validates_associated :diary_entry - attr_accessible :body + after_save :spam_check + + def body + RichText.new(read_attribute(:body_format), read_attribute(:body)) + end def digest md5 = Digest::MD5.new @@ -15,4 +19,10 @@ class DiaryComment < ActiveRecord::Base md5 << body md5.hexdigest end + +private + + def spam_check + user.spam_check + end end