]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Add thunderforest API key to example configuration
[rails.git] / app / models / diary_comment.rb
index bea1c7f0d5b83bac5e31b0761a0027694144d588..2796eb612ac8eea869270fc7cee2f72bb73b6da8 100644 (file)
@@ -2,16 +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
@@ -23,11 +20,7 @@ class DiaryComment < ActiveRecord::Base
     md5.hexdigest
   end
 
-private
-
-  def set_defaults
-    self.body_format = "markdown" unless self.attribute_present?(:body_format)
-  end
+  private
 
   def spam_check
     user.spam_check