Make diary comment creation work again.

This commit is contained in:
Tom Hughes 2009-11-15 11:00:54 +00:00
parent ea294c5a68
commit 57a05a40fc
4 changed files with 13 additions and 9 deletions

View file

@ -2,12 +2,16 @@ class DiaryEntry < ActiveRecord::Base
belongs_to :user
belongs_to :language, :foreign_key => 'language_code'
has_many :diary_comments, :include => :user,
:conditions => {
:users => { :visible => true },
:visible => true
},
:order => "diary_comments.id"
has_many :comments, :class_name => "DiaryComment",
:include => :user,
:order => "diary_comments.id"
has_many :visible_comments, :class_name => "DiaryComment",
:include => :user,
:conditions => {
:users => { :visible => true },
:visible => true
},
:order => "diary_comments.id"
validates_presence_of :title, :body
validates_length_of :title, :within => 1..255