X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aa4205482a4af317ec26fc686793b57f02a6864a..107e9515b35544cb8e4ac66838b9a37f95cdfa89:/app/models/diary_comment.rb

diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb
index 075d288ed..2796eb612 100644
--- a/app/models/diary_comment.rb
+++ b/app/models/diary_comment.rb
@@ -2,15 +2,13 @@ class DiaryComment < ActiveRecord::Base
   belongs_to :user
   belongs_to :diary_entry
 
-  validates_presence_of :body
-  validates_associated :diary_entry
+  validates :body, :presence => true
+  validates :diary_entry, :user, :associated => true
 
-  attr_accessible :body
-
-  after_initialize :set_defaults
+  after_save :spam_check
 
   def body
-    RichText.new(read_attribute(:body_format), read_attribute(:body))
+    RichText.new(self[:body_format], self[:body])
   end
 
   def digest
@@ -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