Booleans should be true/false - coding style comments welcome
This commit is contained in:
parent
527b6f76e3
commit
1140237cae
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@ class User < ActiveRecord::Base
|
|||
has_many :traces
|
||||
has_many :diary_entries, :order => 'created_at DESC'
|
||||
has_many :messages, :foreign_key => :to_user_id, :order => 'sent_on DESC'
|
||||
has_many :new_messages, :class_name => "Message", :foreign_key => :to_user_id, :conditions => "message_read = 0", :order => 'sent_on DESC'
|
||||
has_many :new_messages, :class_name => "Message", :foreign_key => :to_user_id, :conditions => {:message_read => false}, :order => 'sent_on DESC'
|
||||
has_many :sent_messages, :class_name => "Message", :foreign_key => :from_user_id, :order => 'sent_on DESC'
|
||||
has_many :friends, :include => :befriendee, :conditions => "users.visible = 1"
|
||||
has_many :friends, :include => :befriendee, :conditions => ["users.visible = ?", true]
|
||||
has_many :tokens, :class_name => "UserToken"
|
||||
has_many :preferences, :class_name => "UserPreference"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue