]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_entry.rb
Hide diary entries and comments made by deleted users.
[rails.git] / app / models / diary_entry.rb
index ad334151c37f8eafc786b7a8fe9212c7d6ad523e..8568160774f8d671dfefd8a8746a5eefbfdd3649 100644 (file)
@@ -1,3 +1,11 @@
 class DiaryEntry < ActiveRecord::Base
   belongs_to :user
+  has_many :diary_comments, :include => :user,
+                            :conditions => "users.visible = 1",
+                            :order => "id"
+
+  validates_presence_of :title, :body
+  validates_numericality_of :latitude, :allow_nil => true
+  validates_numericality_of :longitude, :allow_nil => true
+  validates_associated :user
 end