git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10160
e93f8b46-1217-0410-a6f0-
8f06a7374b81
has_one :api_token, :class_name => 'Token', :conditions => "action='api'"
belongs_to :auth_source
- # Active non-anonymous users scope
- scope :active, :conditions => "#{User.table_name}.status = #{STATUS_ACTIVE}"
scope :logged, :conditions => "#{User.table_name}.status <> #{STATUS_ANONYMOUS}"
scope :status, lambda {|arg| arg.blank? ? {} : {:conditions => {:status => arg.to_i}} }