X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d3a9ed9cb47ce3b89ea9eaffbb589f9a9ff6d22..fb4ea1a02ac5dc1b0ef444e0d63fafa8f756fa8d:/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