]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Set default formats in the database now that rails handles enums
[rails.git] / app / models / diary_comment.rb
index bea1c7f0d5b83bac5e31b0761a0027694144d588..5ace3d1580b4d2413613d79af3bcd993d0414573 100644 (file)
@@ -5,9 +5,6 @@ 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
@@ -25,10 +22,6 @@ class DiaryComment < ActiveRecord::Base
 
 private
 
-  def set_defaults
-    self.body_format = "markdown" unless self.attribute_present?(:body_format)
-  end
-
   def spam_check
     user.spam_check
   end