X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aa4205482a4af317ec26fc686793b57f02a6864a..ef7f3d800cbdd49b692df10d312e5fd880e2e938:/app/models/diary_comment.rb diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb index 075d288ed..b38240db0 100644 --- a/app/models/diary_comment.rb +++ b/app/models/diary_comment.rb @@ -5,9 +5,7 @@ class DiaryComment < ActiveRecord::Base validates_presence_of :body validates_associated :diary_entry - attr_accessible :body - - after_initialize :set_defaults + after_save :spam_check def body RichText.new(read_attribute(:body_format), read_attribute(:body)) @@ -22,9 +20,9 @@ class DiaryComment < ActiveRecord::Base md5.hexdigest end -private + private - def set_defaults - self.body_format = "markdown" unless self.attribute_present?(:body_format) + def spam_check + user.spam_check end end