- has_many :diary_comments, :include => :user,
- :conditions => "users.visible = 1",
- :order => "diary_comments.id"
+ belongs_to :language, :foreign_key => 'language_code'
+
+ 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"