X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f498a9287a25fc284ef0e1fd90ea8ca91e661183..bdd5c317a7a765a653d98baa062e192ddf615804:/app/models/diary_entry.rb diff --git a/app/models/diary_entry.rb b/app/models/diary_entry.rb index ad334151c..4b2058b9d 100644 --- a/app/models/diary_entry.rb +++ b/app/models/diary_entry.rb @@ -1,3 +1,13 @@ class DiaryEntry < ActiveRecord::Base belongs_to :user + has_many :diary_comments, :include => :user, + :conditions => "users.visible = 1", + :order => "diary_comments.id" + + validates_presence_of :title, :body + validates_length_of :title, :within => 1..255 + validates_length_of :language, :within => 2..3, :allow_nil => true + validates_numericality_of :latitude, :allow_nil => true + validates_numericality_of :longitude, :allow_nil => true + validates_associated :user end