X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/23b8672bc9a8449f6a89d94b25ea036f4815e4bc..30f8e412bc0b43e62b46b99f2cbe3d0c7ac13d51:/app/models/diary_comment.rb diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb index 0013606d0..075d288ed 100644 --- a/app/models/diary_comment.rb +++ b/app/models/diary_comment.rb @@ -5,6 +5,14 @@ class DiaryComment < ActiveRecord::Base validates_presence_of :body validates_associated :diary_entry + attr_accessible :body + + after_initialize :set_defaults + + def body + RichText.new(read_attribute(:body_format), read_attribute(:body)) + end + def digest md5 = Digest::MD5.new md5 << diary_entry_id.to_s @@ -13,4 +21,10 @@ class DiaryComment < ActiveRecord::Base md5 << body md5.hexdigest end + +private + + def set_defaults + self.body_format = "markdown" unless self.attribute_present?(:body_format) + end end