class DiaryEntry < ActiveRecord::Base
- belongs_to :user
+ belongs_to :user, :counter_cache => true
belongs_to :language, :foreign_key => 'language_code'
-
+
has_many :comments, :class_name => "DiaryComment",
:include => :user,
:order => "diary_comments.id"
attr_accessible :title, :body, :language_code, :latitude, :longitude
after_initialize :set_defaults
+ after_save :spam_check
def body
RichText.new(read_attribute(:body_format), read_attribute(:body))
def set_defaults
self.body_format = "markdown" unless self.attribute_present?(:body_format)
end
+
+ def spam_check
+ user.spam_check
+ end
end