X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f9baf5f392370318966c9392e3badbbd715592ad..0d8e4b4337e9b94b6a9ed85095005a779f69583c:/app/models/diary_entry.rb diff --git a/app/models/diary_entry.rb b/app/models/diary_entry.rb index 2da92d400..dd1f9882a 100644 --- a/app/models/diary_entry.rb +++ b/app/models/diary_entry.rb @@ -1,2 +1,11 @@ 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_numericality_of :latitude, :allow_nil => true + validates_numericality_of :longitude, :allow_nil => true + validates_associated :user end