X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d3a9ed9cb47ce3b89ea9eaffbb589f9a9ff6d22..d9f3ceed958a1d39b17bc4719b59ef8a226ace70:/app/models/diary_comment.rb diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb index 075d288ed..bea1c7f0d 100644 --- a/app/models/diary_comment.rb +++ b/app/models/diary_comment.rb @@ -8,6 +8,7 @@ class DiaryComment < ActiveRecord::Base attr_accessible :body after_initialize :set_defaults + after_save :spam_check def body RichText.new(read_attribute(:body_format), read_attribute(:body)) @@ -27,4 +28,8 @@ private def set_defaults self.body_format = "markdown" unless self.attribute_present?(:body_format) end + + def spam_check + user.spam_check + end end