]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Restore templating to embed.js
[rails.git] / app / models / diary_comment.rb
index 075d288edb8e0b644970b7b515a4f6967506abbe..b38240db015cca987af8b12569fa9244cb3f143b 100644 (file)
@@ -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