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"
validates_associated :language
attr_accessible :title, :body, :language_code, :latitude, :longitude
+
+ after_initialize :set_defaults
+
+ def body
+ RichText.new(read_attribute(:body_format), read_attribute(:body))
+ end
+
+private
+
+ def set_defaults
+ self.body_format = "markdown" unless self.attribute_present?(:body_format)
+ end
end