view plugins/redmine_bibliography/app/models/author.rb @ 1385:bfef1bf3bedd luisf

Correctly renders the title of an the activities#index view. Fixes Issue #750.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 20 Sep 2013 19:54:06 +0100
parents 807426fa6017
children 48d9b3ae9e1a
line wrap: on
line source
class Author < ActiveRecord::Base
  unloadable

  has_many :authorships, :dependent => :destroy
  has_many :publications, :through => :authorships

  belongs_to :user

  def <=>(author)
    name.downcase <=> author.name.downcase
  end

  # todo: review usage of scope --lf.20130108
  scope :like, lambda {|q|
    s = "%#{q.to_s.strip.downcase}%"
    {:conditions => ["LOWER(name) LIKE :s", {:s => s}],
     :order => 'name'
    }
  }

end