1 class DiaryEntry < ActiveRecord::Base
3 has_many :diary_comments, :include => :user,
4 :conditions => "users.visible = 1",
5 :order => "diary_comments.id"
7 validates_presence_of :title, :body
8 validates_numericality_of :latitude, :allow_nil => true
9 validates_numericality_of :longitude, :allow_nil => true
10 validates_associated :user